如何断开 git config 的链接<url>.insteadOf <url>

问题描述 投票:0回答:2

我用 git config .insteadOf 将我的 url 设置为其他 url,现在我想断开它的链接。但我不知道该怎么做,而且我在参考页面上找不到它。

git url config
2个回答
14
投票

您可以删除 [url "[email protected]"] 部分:

git config --global --remove-section url."[email protected]"

这比尝试手动编辑 git 配置文件更安全。

参考页:

git config#--remove-section
.


8
投票

你所有的 git 配置更改都转到

~/.gitconfig
,所以你应该可以编辑它,相关部分如下所示:

[url "[email protected]"]
        insteadOf = gh

所以,也许尝试删除这些行?

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