git config --global url
时间: 2023-10-08 08:14:10 浏览: 113
git config
git config --global url."http://gitlab.xxx.io/".insteadOf是用来配置Git在使用http和git协议时进行自动转换的命令。 这个命令的作用是将使用git@gitlab.xxx.io:开头的URL转换为http://gitlab.xxx.io/开头的URL。
如果你想取消代理配置,可以使用以下命令:git config --global --unset http.proxy和git config --global --unset https.proxy。 这两个命令分别用于取消http代理和https代理的设置。
另外,如果你想在使用https://github.com/时设置代理,可以使用以下命令:git config --global url."https://github.com/".insteadOf https://github.moeyy.xyz/https://github.com/。 这个命令将https://github.com/替换为https://github.moeyy.xyz/https://github.com/来设置代理。
阅读全文