gitlib项目迁移到新Gitlab Server

上次的gitlab服务是用http的,这次我给gitlab加上了https支持,因为是自签名的证书,所以需要大家设置git的全局参数http.sslverify为false, 下面是设置此配置的command:

$ git config --global http.sslverify false

原来检出的项目需要修改它的remote才能提交到此repo上。下面以ssl-这个项目为例:

首先查看当前的remote:

 $ git remote -v
origin  http://gitlab.china-ops.com/project/ssl-.git (fetch)
origin  http://gitlab.china-ops.com/project/ssl-.git (push)


删除`origin`这个remote,然后可以看到没有remote repo了。

$ git remote remove origin
 $ git remote -v


添加新的remote repo.

$ git remote add origin https://gitlab.china-ops.com/project/ssl-.git


这样就可以push代码到新remote repo上了。

你可能感兴趣的:(git)