mac 更换brew镜像源

缘起

转mac后,开始使用brew来代替yum来做一些基本软件的安装。每次brew update都要等到大把的时间。深入了解后,发现更换brew的镜像源可以解决问题。

步骤

两条命令解决问题

cd `brew --repo`
git remote set-url origin https://git.coding.net/homebrew/homebrew.git

镜像列表

镜像地址 来源
https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git 清华
https://git.coding.net/homebrew/homebrew.git Coding
https://mirrors.ustc.edu.cn/brew.git 中科大

深入

man brew

   --repository, --repo [user/repo]
       Display where Homebrew's .git directory is located.

       If user/repo are provided, display where tap user/repo's directory is located.

通过帮助文档我们知道 【brew --repo】获取的是brew的git目录,结合

git remote set-url origin https://git.coding.net/homebrew/homebrew.git

可以了解更换镜像源,本质就是更换brew代码的远程仓库地址,就像从github到gitee一样。

你可能感兴趣的:(其他)