I have directory A with files matching directory B. Directory A may have other needed files. Directory B is a git repo.
I want to clone directory B to directory A bu
Here is what I'm doing:
git clone repo /tmp/folder cp -rf /tmp/folder/.git /dest/folder/ cd /dest/folder git checkout -f master