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

Gitlab迁移

时间:2017-01-23 17:17:29      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:push   http   mode   etc   website   color   style   checkout   还需   

公司GitLab项目迁移,

改  .git/config 里面的地址就行。多分支的还需要一个一个checkout下来。

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        url = http://gitlab.xyz.com/app/app.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
        remote = origin
        merge = refs/heads/master
[branch "xxx"]
        remote = xxx
        merge = refs/heads/xxx
[branch "yyy"]
        remote = origin
        merge = refs/heads/yyy

 

 

代码还可以提到到多个仓库:

[remote "web"] 
url = ssh://server.example.org/home/ams/website.git 
url = ssh://other.exaple.org/home/foo/website.git

 

另外可以看到我们push的时候是这样的:

git push origin master

orgin:指的就是上面的 remote "origin"
master:是指的当前分支

比如要提交xxx分支
git push origin xxx

所以如果在上面配置origin2,定义为另外一个地址,估计也是可以的。
git push origin2 xxx

 

Gitlab迁移

标签:push   http   mode   etc   website   color   style   checkout   还需   

原文地址:http://www.cnblogs.com/thinkCoding/p/6344270.html

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