上次的gitlab服务是用http的,这次我给gitlab加上了https支持,因为是自签名的证书,所以需要大家设置git的全局参数http.sslverify为false, 下面是设置此配置的command:
$ git config --global http.sslverify false
原来检出的项目需要修改它的remote才能提交到此repo上。下面以ssl-vpn这个项目为例:
首先查看当前的remote:
$ git remote -v
origin http://gitlab.china-ops.com/project/ssl-vpn.git (fetch)
origin http://gitlab.china-ops.com/project/ssl-vpn.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-vpn.git
这样就可以push代码到新remote repo上了。
今天的文章gitlib项目迁移到新Gitlab Server分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/10237.html