码迷,mamicode.com
首页 > Windows程序 > 详细

Github for windows设置代理

时间:2014-12-30 19:04:04      阅读:1254      评论:0      收藏:0      [点我收藏+]

标签:github   git   shell   git for window   github 代理   

Github for windows设置代理

 

一:简介

      

        在公司、常常为了某些原因会使用代理、所以要在有代理的环境下使用Github、就要为其设置代理。Github for windows提供了GUI和shell 版本、GUI没有提供设置代理的地方、可以通过shell设置。最终结果都是修改Github的配置文件.gitconfig、此文件一般都在用户目录下:C:\Users\andychen\.gitconfig。如以前的文章提到过、配置文件没有特殊必要的话、最好是放在用户目录下、而不是放在一个全部用户都能使用的绝对路径下。

 

二:具体操作

 

        1. 直接修改.gitconfig配置文件C:\Users\andychen\.gitconfig:

 

        打开后添加http段落:

[user]
    email = 7777777@qq.com
    name = ligouden
[alias]
    co = checkout
    br = branch
    ci = commit
    st = status
[http]
    proxy = 10.45.40.148:8080

        2. 命令行下面修改、

        打开gitShell:

   C:\Users\andychen\Documents\GitHub> git config --global http.proxy 10.45.40.148:8080

然后查询http代理:

   C:\Users\andychen\Documents\GitHub>> git config --get http.proxy

10.45.40.148:8080

可见命令最终修改的也是gitconfig文件。

 

Github for windows设置代理

标签:github   git   shell   git for window   github 代理   

原文地址:http://blog.csdn.net/crave_shy/article/details/42270127

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!