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 = [email protected] 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文件。
时间: 2024-10-20 16:37:40