您好,登錄后才能下訂單哦!
這篇文章主要講解了“Github國內訪問如何加速”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Github國內訪問如何加速”吧!
打開 http://tool.chinaz.com/dns,這是一個查詢域名映射關系的工具。
查詢 以下地址,得到其 ip:
github.global.ssl.fastly.net
assets-cdn.github.com
documentcloud.github.com
github.com
gist.github.com
help.github.com
nodeload.github.com
raw.github.com
status.github.com
training.github.com
www.github.com
avatars0.githubusercontent.com
avatars1.githubusercontent.com
codeload.github.com
多查幾次,選擇一個穩定,延遲較低的 ip 按如下方式添加到 host 文件
自己的一次配置如下:
復制
1 2 3 | 151.101.73.194 github.global.ssl.fastly.net 151.101.72.133 assets-cdn.github.com 13.250.177.223 github.com |
github.com 上有兩種源碼獲取方式,一是 git clone,一是直接下載 master.zip,后者明顯速度快于前者,可以考慮:
用 proxychains 這類透明代理,間接走系統中運行的代理工具中轉;
用 git 內置代理,直接走系統中運行的代理工具中轉,比如,你的 SS 本地端口是 1080,那么可以如下方式走代理
復制
1 2 | git config --global http.proxy socks5://127.0.0.1:1080 git config --global https.proxy socks5://127.0.0.1:1080 |
假如你使用的是 http 協議走的代理,注意 http 對應的端口,假如為 1087:
復制
1 2 | git config --global https.proxy http://127.0.0.1:1087 git config --global https.proxy http://127.0.0.1:1087 |
查看全局 config:
復制
1 | cat ~/.gitconfig |
顯示如下:
復制
1 2 3 4 5 | [http] postBuffer = 524288000 proxy = socks5://127.0.0.1:1086 [https] proxy = socks5://127.0.0.1:1086 |
最后,停用代理:
復制
1 2 | git config --global --unset http.proxy git config --global --unset https.proxy |
感謝各位的閱讀,以上就是“Github國內訪問如何加速”的內容了,經過本文的學習后,相信大家對Github國內訪問如何加速這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。