GIT - move a full git repository from one remote sever to another one
Last updated
Last updated
Let’s call the original repository ORI and the new one NEW, here are the steps required to copy everything from ORI to NEW:
Create a local repository in the temp-dir directory using:
Go into the temp-dir directory.
To see a list of the different branches in ORI do:
Checkout all the branches that you want to copy from ORI to NEW using:
Now fetch all the tags from ORI using:
Before doing the next step make sure to check your local tags and branches using the following commands:
Now clear the link to the ORI repository with the following command:
Now link your local repository to your newly created NEW repository using the following command:
Now push all your branches and tags with these commands:
You now have a full copy from your ORI repo.