.gitconfig从GitHub切换到GitLab的全局远程URL

问题描述 投票:1回答:1

从github切换到gitlab。导入我所有的回购。

现在我想继续将我的代码推送到gitlab。我该如何实现这一目标?

我更新了我的.gitconfig文件以使用它,但它没有改变任何东西:

[url "[email protected]/"]
    insteadOf = [email protected]/
git github configuration gitlab git-config
1个回答
1
投票

你在GitLab上有一个git repo吗? 你的url = <url to your git repo>应该指向现有的git repo。 [email protected]也不可能是你的git回购。 无论如何,只需在GitLab上制作一个回购并将该网址指向你的.gitconfig

您可以按照this教程在GitLab上创建一个新项目。之后将浏览器中的URL复制到.gitconfig中。 (在末尾添加.git扩展名)

© www.soinside.com 2019 - 2024. All rights reserved.