git项目的remote地址替换

This week I'll show you how you can move a full Git repository from one remote server to another. The steps I'm using even allow you to choose which branches and tags to include.

Let’s call the original repository ORI and the new one NEW, here are the steps I took to copy everything from ORI to NEW:

  1. Create a local repository in the temp-dir directory using:
     
     
     
     
     
    1
    git clone <url to ORI repo> temp-dir
     
     
    Git clone original repository into local temp-dir
  2. Go into the temp-dir directory.
  3. To see a list of the different branches in ORI do:
     
     
     
     
     
    1
    git branch -a
     
     
    See all the Branches
  4. Checkout all the branches that you want to copy from ORI to NEW using:
     
     
     
     
     
    1
    git checkout branch-name
     
     
    Checkout all branches
  5. Now fetch all the tags from ORI using:
     
     
     
     
     
    1
    git fetch --tags
     
     
    Fetch all the tags
  6. Before doing the next step make sure to check your local tags and branches using the following commands:
     
     
     
     
     
    1
    git tag
    2
    git branch -a
     
     
    Git tag and Git branch to check if we have everything we need.
  7. Now clear the link to the ORI repository with the following command:
     
     
     
     
     
    1
    git remote rm origin
     
     
  8. Now link your local repository to your newly created NEW repository using the following command:
     
     
     
     
     
    1
    git remote add origin <url to NEW repo>
     
     
  9. Now push all your branches and tags with these commands:
     
     
     
     
     
    1
    git push origin --all
    2
    git push --tags
     
     
    The End Result of our 10 steps.
  10. You now have a full copy from your ORI repo.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值