Git 基础操作

7 阅读1分钟

预备操作

设置提交的用户

git config --global user.name "zrzring"
git config --global user.email "zrzring@qq.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 --list