Skip to content

Instantly share code, notes, and snippets.

@brendanashworth
Created July 23, 2014 23:18
Show Gist options
  • Save brendanashworth/1714f58e1acb0587d0d4 to your computer and use it in GitHub Desktop.
Save brendanashworth/1714f58e1acb0587d0d4 to your computer and use it in GitHub Desktop.
Create a .tar.gz archive from git, no external deps
#!/bin/bash
BRANCH=master
FORMAT=tar.gz
EXPORT_LOCATION=/tmp/backup.tar.gz
git archive $BRANCH -o $EXPORT_LOCATION --format $FORMAT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment