git archive --format=tar.gz -o /tmp/my-repo.tar.gz --prefix=my-repo/ master
More detailed version: https://til.simonwillison.net/git/git-archive
| # This functionality has been tested and a PR has been pulled with phyloseq here: | |
| # https://github.com/joey711/phyloseq/pull/854 | |
| # | |
| # While the function has been vetted, the maintainers are very busy and the PR has not | |
| # yet been added to the main package. Below i've added some detail to explain how to parse | |
| # your silva data. It's quite easy.... | |
| source("parse_silva_taxonomy_128") |
| #!/bin/bash | |
| compose_file_path=$1 | |
| project_name=$2 | |
| backup_path=$3 | |
| function backup_volume { | |
| volume_name=$1 | |
| backup_destination=$2 |
git archive --format=tar.gz -o /tmp/my-repo.tar.gz --prefix=my-repo/ master
More detailed version: https://til.simonwillison.net/git/git-archive
| #!/usr/bin/env bash | |
| # | |
| # Author: postmodern | |
| # Description: | |
| # Rips a DVD to a H.264 MKV file, with chapters and tags. Ignores any | |
| # bad blocks or sectors on the DVD. | |
| # Dependencies: | |
| # * gddrescue | |
| # * handbrake-cli | |
| # * mkvtoolnix |