Git 基础配置

set/unset proxy

git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080
git config --global ssh.proxy url
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --unset ssh.proxy
git config --global -e 打开文本编辑器编辑配置文件

set username/email

git config --global user.name name
git config --global user.email [email protected]

git config user.name
git config user.email