MAC 如何解决GitHub下载速度慢的问题
说在前面
解决github下载速度慢的方法很多,本文主要介绍通过Git镜像的方式解决下载慢的问题。 主要步骤有:1、找到gitconfig文件, 2、通过git命令查看当前生效的config 配置 3、使用git config命令编辑并添加国内镜像源
1、gitconfig 文件在哪里?
Git 一共有3个配置文件:
- 仓库级的配置文件:在仓库的 .git/.gitconfig,该配置文件只对所在的仓库有效。
- 全局配置文件:Mac 系统在 ~/.gitconfig,Windows 系统在 C:\Users<用户名>.gitconfig。
- 系统级的配置文件:在 Git 的安装目录下(Mac 系统下安装目录在 /usr/local/git)的 etc 文件夹中的 gitconfig。
2、git config 操作的相关命令
# 查看配置信息# --local:仓库级,--global:全局级,--system:系统级$ git config <--local | --global | --system> -l# 查看当前生效的配置信息$ git config -l# 编辑配置文件# --local:仓库级,--global:全局级,--system:系统级$ git config <--local | --global | --system> -e# 添加配置项# --local:仓库级,--global:全局级,--system:系统级$ git config <--local | --global | --system> --add <name> <value>
3、Git镜像源的选择
由于Git是分布式的版本控制系统,可以从多个镜像源进行Git操作。这里提供一些Git镜像,我们可以将就近的Git镜像加入.git/config文件中:
中科大镜像源
[url “https://mirrors.ustc.edu.cn/git/”]
insteadOf = https://github.com/
insteadOf = https://gitlab.com/
insteadOf = https://bitbucket.com/
2、清华大学镜像源
[url “https://mirrors.tuna.tsinghua.edu.cn/git/”]
insteadOf = https://github.com/
insteadOf = https://gitlab.com/
insteadOf = https://bitbucket.com/
3、阿里云镜像源
[url “https://code.aliyun.com/”]
insteadOf = https://github.com/
insteadOf = https://gitlab.com/
insteadOf = https://bitbucket.com/
参考:
来源地址:https://blog.csdn.net/qq_42886163/article/details/133236999
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341