I\'ve been wondering whether there is a good \"git export\" solution that creates a copy of a tree without the .git
repository directory. There are at least thr
I just want to point out that in the case that you are
Then you can just use cp foo [destination]
instead of the mentioned git-archive master foo | -x -C [destination]
.