Skip to content

Instantly share code, notes, and snippets.

@rctay
Created September 27, 2011 05:58
Show Gist options
  • Save rctay/1244436 to your computer and use it in GitHub Desktop.
Save rctay/1244436 to your computer and use it in GitHub Desktop.
[git] dump all files
# 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