Git socks5 代理设置
tbghg
1
2
3
4
5
6
7
8
9
10
11
# 使用socks5代理(端口根据自己设置的改变,一般是1080,我的是10808)
git config --global http.proxy socks5://127.0.0.1:10808
git config --global https.proxy socks5://127.0.0.1:10808

# 使用http代理
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080

# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
1
2
3
4
5
6
7
# git强制推送
git push -f origin master

# git放弃修改,覆盖本地代码
git fetch --all
git reset --hard origin/master
git pull
 评论
评论插件加载失败
正在加载评论插件