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
.git
This will copy all contents, minus the .dot files. I use this to export git cloned projects into my web app's git repo without the .git stuff.
cp -R ./path-to-git-repo /path/to/destination/
Plain old bash works just great :)