GitHub Windows Client 设置HTTP 代理

1. 安装Windows客户端
https://github.com/xxxx
2. Create Git Repo
3. 建议设置 git bash 为 terminal
4. git config --list
git config –-global http.proxy http://127.0.0.1:8087
设置代理服务器
5. 遇过遇到 "无法定位程序输入点curl_multi_timeout" libcurl 错误,
更新libcurl到最新版本
http://curl.haxx.se/dlwiz/?type=lib&os=Win32&flav=-
把zip包中的dll,cp到 /windows/system32 文件夹下
6. git remote add origin https://github.com/xxxx.git
git commit -a -m "comments"
git push origin master
上传代码

原文地址:https://www.cnblogs.com/bouygues/p/4512267.html