Skip to content

Instantly share code, notes, and snippets.

@modsaid
Created February 22, 2012 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save modsaid/1884493 to your computer and use it in GitHub Desktop.
Save modsaid/1884493 to your computer and use it in GitHub Desktop.
Exporting files out of a git repo like svn export
git archive master | tar -x -C /somewhere/else
OR
git archive --format zip --output /full/path/to/zipfile.zip master
Ref: http://stackoverflow.com/questions/160608/how-to-do-a-git-export-like-svn-export
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment