brew更换源

在mac中,brew是一个很好的包管理工具,类似于ubuntu中的apt-get。但是,在安装一些工具时候,如rabbitmq时候,总是需要先进行brew update,然后再安装。这其中,brew update经常是无法完成,或者需要等待很久的。虽然可以在这时候按下Ctrl+c去取消此update行为,但无法保证后面安装的工具包是最新的。
更换brew的源,可以很方便地进行update以及安装操作。方法如下:

# 查看brew的官方镜像源为https://github.com/Homebrew/homebrew
$ cd /usr/local
$ git remote -v
# 更改brew镜像源
$ cd /usr/local
git remote set-url origin git://mirrors.tuna.tsinghua.edu.cn/homebrew.git
$ git remote -v                                                            
origin  git://mirrors.tuna.tsinghua.edu.cn/homebrew.git (fetch)
origin  git://mirrors.tuna.tsinghua.edu.cn/homebrew.git (push)

参考
1. https://www.jianshu.com/p/631e63dab0a0

你可能感兴趣的:(工具)