【git】解决 git clone 时速度较慢
【问题描述】
在使用 git 克隆 github 上项目时,速度会很慢,尤其是递归克隆时。。。
【解决方案】
可通过 ssh
的方式替换 https
的方式(前提是已经在 github 账号中配置 ssh
公钥,这里不再赘述),比如:
git clone https://github.com/microsoft/onnxruntime.git
// 替换为:
git clone git@github.com:microsoft/onnxruntime.git
当然,还可以通过配置 .gitconfig
文件实现自动替换,在 Ubuntu 系统中该文件一般位于用户主目录 /home/xxx/
中,打开该文件,添加如下内容:
[url "git@github.com:"]
insteadOf = https://github.com/
此外,该配置在使用递归克隆时特别高效。