我用 git config .insteadOf 将我的 url 设置为其他 url,现在我想断开它的链接。但我不知道该怎么做,而且我在参考页面上找不到它。
您可以删除 [url "[email protected]"] 部分:
git config --global --remove-section url."[email protected]"
这比尝试手动编辑 git 配置文件更安全。
git config#--remove-section
.
你所有的 git 配置更改都转到
~/.gitconfig
,所以你应该可以编辑它,相关部分如下所示:
[url "[email protected]"]
insteadOf = gh
所以,也许尝试删除这些行?