Created
July 20, 2014 10:12
-
-
Save amatellanes/ddf1dffa34f7afdfd544 to your computer and use it in GitHub Desktop.
Create tarball and zipball from a repo using git.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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