Github代理服务,解决github文件下载克隆难题
-
- 推荐语:GitHub 文件 , Releases , archive , gist , raw.githubusercontent.com 文件代理加速下载服务
- 地址:https://ghproxy.com/
终端命令行
支持终端命令行 git clone , wget , curl 等工具下载.
支持 raw.githubusercontent.com , gist.github.com , gist.githubusercontent.com 文件下载.
注意:不支持 SSH Key 方式 git clone 下载.git clone
git clone https://ghproxy.com/https://github.com/stilleshan/ServerStatuswget & curl
wget https://ghproxy.com/https://github.com/stilleshan/ServerStatus/archive/master.zip
wget https://ghproxy.com/https://raw.githubusercontent.com/stilleshan/ServerStatus/master/Dockerfile
curl -O https://ghproxy.com/https://github.com/stilleshan/ServerStatus/archive/master.zip
curl -O https://ghproxy.com/https://raw.githubusercontent.com/stilleshan/ServerStatus/master/Dockerfile -
@小鱼 这里的地址已经失效,烦请更新一下啦~
-
@ganyuanzhen 社区内最新的地址似乎是 http://github.fishros.org/
-
@ganyuanzhen 是这个,我搭的,还算稳定
-
@小鱼 你好,我想请问该代理怎么使用,因为我在microros agent进行colcon build的时候提示我fatal: unable to access 'https://github.com/gabime/spdlog.git/': Failed to connect to github.;然后我试着加上代理进行git clone http://github.fishros.org/https://github.com/gabime/spdlog.git/就成功了,于是我想着修改出错的.cmake文件,但是这并不起作用,因为我发现还是出现相同的错误,应该是修改后的.cmake 文件会在再一次的colcon build中被重新生成,导致我添加的代理地址消失,现在我尝试着这样操作
export http_proxy=http://github.fishros.org/
export https_proxy=http://github.fishros.org/并更新了git配置,但是报错fatal: unable to access 'https://github.com/gabime/spdlog.git/': Failed to connect to github.fishros.org port 1080 after 281 ms: Couldn't connect to server。所以我想问一下如何更方便的使用http://github.fishros.org/来让我在编译时能够成功git clone。