0%

git

配置bash代理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//配置部分代理
git config --global http.https://github.com.proxy https://127.0.0.1:xxx
git config --global https.https://github.com.proxy https://127.0.0.1:xxx
//配置全局代理
git config --global https.proxy http://127.0.0.1:xxx
git config --global http.proxy https://127.0.0.1:xxx
//取消部分代理
git config --global --unset https.https://github.com.proxy
git config --global --unset http.https://github.com.proxy
//取消全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy
//查看当前局部代理
git config --global --get https.https://github.com.proxy
git config --global --get http.https://github.com.proxy
//查看当前全局代理
git config --global --get https.proxy
git config --global --get http.proxy

提交PR

1
2
3
4
5
6
git checkout -b dev
# fix something
git add .
git commit -m "msg"
git push origin dev
# login