本文介绍了如何在 GitLab 中更改项目的 url?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 Gitlab 中有一个可以通过 HTTP/SSH 访问的项目:
I have a project in Gitlab that is available over HTTP/SSH:
[email protected]:MyGroup/MyProject.git
我想使用另一个 IP 来更改它,即:
I want to change that using another IP, i.e.:
[email protected]:MyGroup/MyProject.git
我可以在哪里或如何更改它?
Where or how can I change that?
推荐答案
您可以使用以下命令为您的存储库设置新的 URL.
You can use below command to set new URL for your repository.
git remote set-url origin git://[email protected]:MyGroup/MyProject.git
这篇关于如何在 GitLab 中更改项目的 url?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!