Moving Git repository content to another repository preserving history

I am trying to move only the contents of one repository (repo1) to another existing repository (repo2) using the following commands:

git clone repo1
git clone repo2
cd repo1
git remote rm origin
git remote add repo1
git push

But it’s not working. I reviewed a similar post, but I only found one moving the folder, not the contents.

14 Answers
14

Leave a Comment