码迷,mamicode.com
首页 > 其他好文 > 详细

git - 远程仓库的删除和重命名

时间:2017-09-06 19:37:58      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:origin   远程   参与   服务器迁移   变化   原来   master   名称   远程仓库   

在新版 Git 中可以用 git remote rename 命令修改某个远程仓库在本地的简称,比如想把 pb 改成paul,可以这么运行:

$ git remote rename pb paul
$ git remote
origin
paul

注意,对远程仓库的重命名,也会使对应的分支名称发生变化,原来的 pb/master 分支现在成了paul/master

碰到远端仓库服务器迁移,或者原来的克隆镜像不再使用,又或者某个参与者不再贡献代码,那么需要移除对应的远端仓库,可以运行 git remote rm 命令:

$ git remote rm paul
$ git remote
origin

git - 远程仓库的删除和重命名

标签:origin   远程   参与   服务器迁移   变化   原来   master   名称   远程仓库   

原文地址:http://www.cnblogs.com/byron-li/p/7486237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!