- 删除远程分支
git push origin :<分支名称> - 使用远程代理更新、提交代码
https_proxy="127.0.0.1:1080" git pullhttps_proxy="127.0.0.1:1080" git push - 更改本地分支名称
git branch -m <old_branch_name> <new_branch_name> - 更改github提交方式
vim .git/config
更改url值为https或者ssh的地址,然后执行以下命令:
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080' - 未完待续......