I want to clone a GIT repo and NOT end up with a .git directory. In other words I just want the files. Is there a way to do this?
.git
git clone --no-chec
git archive --format=tar --remote= HEAD | tar xf -
taken from here