美文网首页
git常用命令

git常用命令

作者: JoyoDuan | 来源:发表于2022-12-12 13:46 被阅读0次

Git常用命令

  1. git中设置全局代理:
git config --global http.proxy http://192.168.1.200:10809
git config --global https.proxy https://192.168.1.200:10809
  1. 取消全局代理:
git config --global --unset http.proxy
git config --global --unset https.proxy
  1. 针对github进行单独设置:
# 只针对github.com进行代理
git config --global http.https://github.com.proxy http://192.168.1.200:10809
git config --global https.https://github.com.proxy https://192.168.1.200:10809

# 取消对github.com的代理
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
  1. 查看当前用户的全局配置
git config --global list

显示错误解决办法

  1. 显示“error: RPC failed; curl 56 OpenSSL SSL_read: Connection was reset, errno 10054”
git config --global http.sslVerify "false"

相关文章

网友评论

      本文标题:git常用命令

      本文链接:https://www.haomeiwen.com/subject/gptcqdtx.html