Homebrew 源使用帮助¶
地址¶
说明¶
Homebrew 源代码仓库
使用说明¶
替换 NJU 镜像:
export HOMEBREW_BREW_GIT_REMOTE="https://mirror.nju.edu.cn/git/homebrew/brew.git"
brew update
注解
若用户设置了环境变量 HOMEBREW_BREW_GIT_REMOTE
,则每次运行 brew update
时将会自动设置远程。
推荐用户将环境变量 HOMEBREW_BREW_GIT_REMOTE
加入 shell 的 profile 设置中。
# 对于 bash 用户
echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirror.nju.edu.cn/git/homebrew/brew.git"' >> ~/.bash_profile
# 对于 zsh 用户
echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirror.nju.edu.cn/git/homebrew/brew.git"' >> ~/.zshrc
重置为官方地址:
unset HOMEBREW_BREW_GIT_REMOTE
git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew
注解
重置回默认远程后,用户应该删除 shell 的 profile 设置中的环境变量 HOMEBREW_BREW_GIT_REMOTE
以免运行 brew update
时远程再次被更换。
若之前使用的 git config url.<URL>.insteadOf URL
的方式设置的镜像,请手动删除 config
文件(一般为 ~/.gitconfig
或仓库目录下的 .git/config
)中的对应字段。
使用NJU源安装 Homebrew¶
首先在命令行运行如下几条命令设置环境变量:
export HOMEBREW_BREW_GIT_REMOTE="https://mirror.nju.edu.cn/git/homebrew/brew.git"
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.nju.edu.cn/git/homebrew-core.git"
之后在命令行运行 Homebrew 安装脚本:
/bin/bash -c "$(curl -fsSL https://github.com/Homebrew/install/raw/HEAD/install.sh)"
注解
初次安装 Homebrew / Linuxbrew 时,如果无法下载安装脚本,
可以使用 jsDelivr CDN
下载 install.sh
。
/bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/Homebrew/install@HEAD/install.sh)"
相关镜像¶
# 手动设置
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirror.nju.edu.cn/git/homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirror.nju.edu.cn/git/homebrew/homebrew-cask.git
git -C "$(brew --repo homebrew/cask-fonts)" remote set-url origin https://mirror.nju.edu.cn/git/homebrew/homebrew-cask-fonts.git
git -C "$(brew --repo homebrew/cask-drivers)" remote set-url origin https://mirror.nju.edu.cn/git/homebrew/homebrew-cask-drivers.git
git -C "$(brew --repo homebrew/cask-versions)" remote set-url origin https://mirror.nju.edu.cn/git/homebrew/homebrew-cask-versions.git
git -C "$(brew --repo homebrew/command-not-found)" remote set-url origin https://mirror.nju.edu.cn/git/homebrew/homebrew-command-not-found.git
相关链接¶
官方主页: | http://brew.sh/ |
---|---|
brew 文档: | http://docs.brew.sh/ |