linux使用git时传输速度太低,提速

Posted Haris

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux使用git时传输速度太低,提速相关的知识,希望对你有一定的参考价值。

下面是我自己写的脚本:

#!/bin/bash
# author  TommyWang
# website  http://dynmi.top


fast_ip=`nslookup github.global.ssl.fastly.Net|egrep [[:digit:]]{1,3}.[[:digit:]]{1,3}.[[:digit:]]{1,3}.[[:digit:]]{1,3}`

fast_ip=${fast_ip##*:}

git_ip=`nslookup github.com|egrep [[:digit:]]{1,3}.[[:digit:]]{1,3}.[[:digit:]]{1,3}.[[:digit:]]{1,3}`

git_ip=${git_ip##*:}

echo "${fast_ip}"
echo "${git_ip}" 

sed -i /github.global.ssl.fastly.Net/d /etc/hosts
sed -i /github.com/d /etc/hosts

echo "github.global.ssl.fastly.Net${fast_ip}
github.com${git_ip}" >> /etc/hosts

sudo systemctl restart nscd

 

将它加入到crontab 定时执行中,必须是root身份,在/etc/crontab中追加(修改脚本地址)

10 10   * * *   root    /home/dynmi/Documents/essential_bash/refresh_git_ip.sh

 

以上是关于linux使用git时传输速度太低,提速的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu下git clone 提速

一个让 git clone 提速几十倍的小技巧

一个让 git clone 提速几十倍的小技巧(实用!)

如何提高LaTeX的编译速度?

苹果推出“边缘缓存”服务,IOS用户下载内容将迎接“大提速”

强化学习技巧五:numba提速python程序