git 设置代理: git config --global git 取消代理: git config --global --unset http.proxy 针对 github.com 设置代理: git config --global  取消 github.com 代理: git config --global --unset http.https://github.com.proxy 注意:设置代理需要科(翻)学(墙)上网,后面的端口号(1080)要和科(翻)学(墙)上网 Http代理监听端…
在linux上加速git clone 进入终端命令行模式,sudo vim /etc/hosts 编辑hosts文件,添加以下ip-域名,保存退出 151.101.44.249 github.global.ssl.fastly.net  192.30.253.113 github.com  103.245.222.133 assets-cdn.github.com  23.235.47.133 assets-cdn.github.com  203.208.39.104 assets-cdn.gi…
设置代理 git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080' 取消代理 git config --global --unset http.proxy git config --global --unset https.proxy 还有针对 github.com 的单独配置: #只对github.com git confi…
# 设置ss git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080' # 设置代理 git config --global https.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080 # 取消代理 git c…
设置代理npm config set proxy=http://127.0.0.1:8087npm config set registry=http://registry.npmjs.org12关于https经过上面设置使用了http开头的源,因此不需要设https_proxy了,否则还要增加一句: npm config set https-proxy http://server:port1代理用户名和密码npm config set proxy http://username:password…
设置代理: 全局代理 git config --global http.proxy 127.0.0.1:1087 局部代理,在github clone 仓库内执行 git config --local http.proxy 127.0.0.1:1087 (127.0.0.1:1087 这个地址是我翻出去用的代理地址,根据自己的实际修改) 查询是否使用代理: 查询全局代理 git config --global http.proxy 查询局部代理 git config --local http.p…
设置代理: git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080' 查看代理: git config --global --get http.proxy git config --global --get https.proxy 取消代理: git config --global --unset http.proxy git…
git clone 独家方法 最近需要下载网上很多github库,所以git clone 4kb/s 的速度可以把人逼疯,为了加速git clone才有了这篇博客 网上有很多加速的方案 比如 blog1 blog2 还有很多,其中很大一部分加速方案都是建立在代理的基础上,如果对这个不熟悉的人可能就会出现问题 导致apt-get update 无法正常执行的错误,所以不要鲁莽 独家方案 申请一个gitlab账号 右上角加号点击 点击 new project 点击import project 点击g…
转自 git clone出现 fatal: unable to access 'https://github.com/...'的解决办法(亲测有效) - 山村码农 - 博客园 (cnblogs.com) <div id="cnblogs_post_body" class="blogpost-body cnblogs-markdown"><p>转自:<a href="https://blog.csdn.net/dashi_lu/…
操作: $ git clone https://github.com/zjun615/DragListView.gitCloning into 'DragListView'...fatal: unable to access 'https://github.com/zjun615/DragListView.git/': Failed to connect to 127.0.0.1 port 1080: Connection refused 解决方案: 查看代理:git config --glob…