Git常用操作
2020-03-17 本文已影响0人
Anne_胖达
设置代理
git config --global http.proxy 'proxy address'
git config --global https.proxy 'proxy address'
比如git config --global https.proxy 'http://127.0.0.1:1081'
查看代理
git config --global --get http.proxy
git config --global --get https.proxy
取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
修改全局用户名与邮箱
git config --global user.name "username"
git config --global user.email email
查看全局用户名邮箱
git config --global --get user.name
git config --global --get user.email
修改当前工程用户名与邮箱
git config user.name "username"
git config user.email email
查看当前工程用户名邮箱
git config --get user.name
git config --get user.email
查看所有分支
git branch -a