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
This worked for me:
cd existing_folder git init git remote add origin path_to_your_repo.git git add . git commit git push -u origin master