Quantcast
Channel: Git push existing repo to a new and different remote repo server? - Stack Overflow
Viewing all articles
Browse latest Browse all 20

Answer by vm345 for Git push existing repo to a new and different remote repo server?

$
0
0

Try this How to move a full Git repository

  1. Create a local repository in the temp-dir directory using:

    git clone temp-dir

  2. Go into the temp-dir directory.

  3. To see a list of the different branches in ORI do:

    git branch -a
  4. Checkout all the branches that you want to copy from ORI to NEW using:

    git checkout branch-name
  5. Now fetch all the tags from ORI using:

    git fetch --tags
  6. Before doing the next step make sure to check your local tags and branches using the following commands:

    git taggit branch -a
  7. Now clear the link to the ORI repository with the following command:

    git remote rm origin
  8. Now link your local repository to your newly created NEW repository using the following command:

    git remote add origin <url to NEW repo>
  9. Now push all your branches and tags with these commands:

    git push origin --allgit push --tags
  10. You now have a full copy from your ORI repo.


Viewing all articles
Browse latest Browse all 20

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>