Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 git config .insteadOf 将我的网址设置为其他网址,现在我想断开它的链接。但我不知道该怎么做,也无法在参考页面上找到它。
您可以使用以下命令删除 [url "git@github.com"] 部分:
git config --global --remove-section url."git@github.com"
这比尝试手动编辑 git 配置文件更安全。
参考页:git config#--remove-section。
git config#--remove-section
您所有的 git 配置更改都转到~/.gitconfig,因此您应该能够对其进行编辑,相关部分如下所示:
~/.gitconfig
[url "git@github.com"] insteadOf = gh
那么,也许尝试删除这些行?