Created
November 16, 2012 19:29
-
-
Save ejhayes/4090143 to your computer and use it in GitHub Desktop.
Git Export - functions just like a subversion export. Very nice!
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=zip --remote=git@git:project.git master some/path other/path -o whatever.zip |
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=zip --remote=git@git:project.git master:some/path -o whatever.zip |
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 --remote=git@git:project.git master:some/path | tar -xf - |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment