Skip to content

Instantly share code, notes, and snippets.

@GorillaTester
Forked from amatellanes/git_archive.sh
Created August 7, 2017 17:07
Show Gist options
  • Select an option

  • Save GorillaTester/191a57c08ea5dbe749ad39a2acfabe0e to your computer and use it in GitHub Desktop.

Select an option

Save GorillaTester/191a57c08ea5dbe749ad39a2acfabe0e 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