I have a folder under version control. I want to make a copy of it to send around, but don\'t want to include all the .git directories and the files underneath it.
Is
You can use git-archive, for example:
git archive master | bzip2 > project.tar.bz2
Where master is the desired branch.
master