In the git help pages it says
So if you do need to do this, then a work around is:
Clone the repository without checking out the contents to a new folder
git clone -n <repo>
Then move the git folder to where it needs to be
mv .git <existing folder>
Then force a check out the contents
git checkout -f master
Warning: This come with no guarantee of success. Works on my machine…