摘要: Git的代理设置也非常简单,一句话就搞定了:git config --global http://proxy.yourname.com:8080如果需要用户名密码的话,则设置:git config –global http.proxy http://user:password@proxy.yourname.com:8080其中user和password分别为你的用户名和密码。设置完成后,可以通过如下命令来查看设置是否生效:git config –get –global http.proxy如果某一天你不喜欢她了,需要删除代理设置,那么可以使用:git config --system (或 -- 阅读全文
posted @ 2013-03-25 09:49 Chjun 阅读(706) 评论(0) 推荐(0) 编辑