标签:修改 Edito red set 链接 ping require pad 通过
大家普遍采取的是更改本地的host文件,然后cmd命令刷新
1.访问这里,依次获取下面三个url的ping的ip
github.com
github.global.ssl.fastly.net
codeload.github.com
2.需要C:\Windows\System32\drivers\etc
然后修改github相关的属性为
192.30.253.113 github.com
151.101.25.194 github.global.ssl.fastly.net
192.30.253.121 codeload.github.com
3.执行ipconfig /flushdns
命令,刷新 DNS 缓存。
前期的准备:首先自己将代理开启,系统代理模式改为全局模式
1.设置Git的代理方式
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
2.取消(不建议)
git config --global --unset http.proxy
git config --global --unset https.proxy
3.通过Git命令来确认
git config --global --list
结果显示
$ git config --global --list
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
user.name=********** #用户名
user.email=*********@gmail.com #注册邮箱
core.editor="D:\WDGJ\Sublime Text 3\sublime_text.exe" -w
http.http://github.com.proxy=http://127.0.0.1:1080
https.https://github.com.proxy=https://127.0.0.1:1080
http.proxy=http://127.0.0.1:1080
socks5的代理可以获取这里
利用gitee来进行转接下载,要求:一个github账户,一个码云gitee账户
可以参考这位大佬的文章
标签:修改 Edito red set 链接 ping require pad 通过
原文地址:https://www.cnblogs.com/J-Nemo/p/11260933.html