Homebrew 源使用帮助
作者:互联网
http://mirrors.ustc.edu.cn/help/brew.git.html
Homebrew 源使用帮助
地址
https://mirrors.ustc.edu.cn/brew.git/
说明
Homebrew 源代码仓库
使用说明
替换 USTC 镜像:
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git" brew update
备注
若用户设置了环境变量 HOMEBREW_BREW_GIT_REMOTE
,则每次运行 brew update
时将会自动设置远程。 推荐用户将环境变量 HOMEBREW_BREW_GIT_REMOTE
加入 shell 的 profile 设置中。
# 对于 bash 用户 echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"' >> ~/.bash_profile # 对于 zsh 用户 echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/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
)中的对应字段。
使用科大源安装 Homebrew / Linuxbrew
首先在命令行运行如下几条命令设置环境变量:
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git" export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git" export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"
之后在命令行运行 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)"
相关镜像
相关链接
- 官方主页
- brew 文档
标签:帮助,git,HOMEBREW,GIT,https,使用,brew,Homebrew 来源: https://www.cnblogs.com/rxbook/p/16376230.html