Git 配置指南
2024年3月5日...小于 1 分钟
查看配置信息
git config --list
配置用户信息
git config --global user.name "Your Name"
git config --global user.email "email@example.com"
配置代理
设置全局代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890
取消设置全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy
设置对 GitHub 代理
git config --global http.https://github.com.proxy http://127.0.0.1:7890
git config --global https.https://github.com.proxy https://127.0.0.1:7890
取消设置对 GitHub 代理
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
Powered by Waline v3.3.2