Created
September 27, 2011 05:58
-
-
Save rctay/1244436 to your computer and use it in GitHub Desktop.
[git] dump all files
This file contains 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
# dumps files in the format "file: <name>\n<file contents>" | |
$ git ls-tree --name-only -r HEAD | awk '{ print "echo file: "$0"; cat "$0; }' | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment