I have a working copy of the project, without any source control meta data. Now, I\'d like to do the equivalent of git-clone into this folder, and keep my local changes.
To clone a git repo into an empty existing directory do the following:
cd myfolder git clone https://myrepo.com/git.git .
Notice the . at the end of your git clone command. That will download the repo into the current working directory.
.
git clone