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

gitlab迁移远程仓库技巧

时间:2019-08-14 14:58:59      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:ranch   移除   仓库   本地   pull   ups   远程仓库   目录   同步   

1.到工程目录下(例如 cd test-web/)

2.查看当前远程仓库分支

git remote -v

(例如得到:git@10.10.10.10:web/test-web.git)

3.移除当前地址

git remote remove origin

4.添加新地址

git remote add origin <新的远程仓库地址>

(例如:git remote add origin git@10.10.10.10:web/test-web.git )

5.同步远程仓库

git pull

6.设置当前分支(本地分支对应的远程分支)

git branch --set-upstream-to=origin/<branch><本地当前分支>

例如:git branch --set-upstream-to=origin/dev_20190101 dev_20190101

gitlab迁移远程仓库技巧

标签:ranch   移除   仓库   本地   pull   ups   远程仓库   目录   同步   

原文地址:https://www.cnblogs.com/kdx-2/p/11351508.html

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