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 three methods I know of:
git clonefollowed by removing the.gitrepository directory.git checkout-indexalludes to this functionality but starts with "Just read the desired tree into the index..." which I'm not entirely sure how to do.git-exportis a third party script that essentially does agit cloneinto a temporary location followed byrsync --exclude='.git'into the final destination.
None of these solutions really strike me as being satisfactory. The closest one to svn export might be option 1, because both those require the target directory to be empty first. But option 2 seems even better, assuming I can figure out what it means to read a tree into the index.
