首页 > 其他 > 详细

git: 替换remote origin

时间:2021-02-27 10:41:28      阅读:40      评论:0      收藏:0      [点我收藏+]

查看远程origin地址:

git remote -v

 

删除现有的origin地址:

git remote remove origin

 

添加新的origin地址(新建的代码托管地址):

git remote add origin 远程地址

 

pull远程代码:

git branch --set-upstream-to=origin/<branch> master
git pull origin master --allow-unrelated-histories

 

正常提交本地代码到新origin地址

 

git: 替换remote origin

原文:https://www.cnblogs.com/Nyan-Workflow-FC/p/14454788.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!