We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
国内使用github因为某些原因是比较慢的,如果没有配置代理基本都是 10KB/s 以内的速度,如果大家本地有科学上网的工具,那么可以通过配置让 git clone 的时候也走代理,这样速度会有质的飞跃。
10KB/s
git clone
git 可以配置使用 http 或者 socks5 都行,因为我们公司内网有gitlab,为了不影响避免内网也走代理导致无法同步代码,需要指定只有 github 才走代理,建议大家都这样配置而不是直接配置一个全局代理,配置如下(SOCKS/HTTP任选一种即可):
http
socks5
github
# socks5 git config --global http.https://gh.neting.cc.proxy socks5://127.0.0.1:1080 git config --global https.https://gh.neting.cc.proxy socks5://127.0.0.1:1080 # http git config --global http.https://gh.neting.cc.proxy https://127.0.0.1:1087 git config --global https.https://gh.neting.cc.proxy https://127.0.0.1:1087
如果你本地服务只有http,那么地址需要改成 http://127.0.0.1:{端口号}
http://127.0.0.1:{端口号}
不过要注意,这仅对 HTTPS 协议的地址生效,如果你是用 SSH的协议,那么是不生效的,可以换成HTTPS 协议的下载地址,也可以通过配置让 SSH 都走 HTTPS 协议,这样就没问题了:
HTTPS
SSH
git config --global url."https://github.com/".insteadOf git@github.com: git config --global url."https://".insteadOf git://
经过测试,未代理之前是 10KB/S 左右,本地代理可以达到 6MB/s 的平均速度:
10KB/S
6MB/s
怎么删除上述配置内?其实git全局配置都在 ~/.gitconfig 文件中,直接进去删掉就好了。
~/.gitconfig
参考:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
国内使用github因为某些原因是比较慢的,如果没有配置代理基本都是
10KB/s
以内的速度,如果大家本地有科学上网的工具,那么可以通过配置让git clone
的时候也走代理,这样速度会有质的飞跃。git 可以配置使用
http
或者socks5
都行,因为我们公司内网有gitlab,为了不影响避免内网也走代理导致无法同步代码,需要指定只有github
才走代理,建议大家都这样配置而不是直接配置一个全局代理,配置如下(SOCKS/HTTP任选一种即可):如果你本地服务只有http,那么地址需要改成
http://127.0.0.1:{端口号}
不过要注意,这仅对
HTTPS
协议的地址生效,如果你是用SSH
的协议,那么是不生效的,可以换成HTTPS
协议的下载地址,也可以通过配置让SSH
都走HTTPS
协议,这样就没问题了:经过测试,未代理之前是
10KB/S
左右,本地代理可以达到6MB/s
的平均速度:怎么删除上述配置内?其实git全局配置都在
~/.gitconfig
文件中,直接进去删掉就好了。参考:
The text was updated successfully, but these errors were encountered: