git 一些常用的配置
配置 ssh-agent
eval $(ssh-agent -s)
ssh-add ~/.ssh/git
设置用户名和邮箱
# 替换为自己的用户名和邮箱
git config --global user.name "mengshouer"
git config --global user.email "mengshouer@outlook.com"
代理设置
- 配置代理地址
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
- 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy