Skip to content

Instantly share code, notes, and snippets.

@amatellanes
Created July 20, 2014 10:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save amatellanes/ddf1dffa34f7afdfd544 to your computer and use it in GitHub Desktop.
Save amatellanes/ddf1dffa34f7afdfd544 to your computer and use it in GitHub Desktop.
Create tarball and zipball from a repo using git.
git archive --format=tar --prefix=git-1.4.0/ v1.4.0 | gzip >git-1.4.0.tar.gz # Create a compressed tarball for v1.4.0 release.
git archive --format=zip --prefix=git-1.4.0/ v1.4.0 > git-1.4.0-docs.zip # Create a compressed zipball for v1.4.0 release.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment