美文网首页
2019-03-02 git加速 brew加速

2019-03-02 git加速 brew加速

作者: Purson | 来源:发表于2019-03-02 14:20 被阅读0次

git 修改hosts文件

151.101.185.194    http://github.global.ssl.fastly.net  

192.30.253.112     http://github.com 

brew 取电子科大或者清华:
Homebrew的更新源由三部分组成:本体(brew.git)、核心(homebrew-core.git)以及二进制预编译包(homebrew-bottles)

替换brew.git:

$ cd "$(brew --repo)"
# 中国科大:
$ git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
# 清华大学:
$ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git

替换homebrew-core.git:

$ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
# 中国科大:
$ git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
# 清华大学:
$ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

替换homebrew-bottles:

中国科大:

$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
$ source ~/.bash_profile

清华大学:

$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile
$ source ~/.bash_profile

应用生效:

$ brew update

以上在中国科大和清华大学任选其一即可,在使用其他源的时候,最好先尝试访问其链接看看是否健在,并且因为历史原因,最初的brew.git是叫homebrew.git的,而现在部分更新源早已随官方更名,所以切记要验证。

诊断Homebrew的问题:

$ brew doctor

重置brew.git设置:

$ cd "$(brew --repo)"
$ git fetch
$ git reset --hard origin/master

homebrew-core.git同理:

$ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
$ git fetch
$ git reset --hard origin/master

应用生效:

$ brew update

重置更新源

重置brew.git:

$ cd "$(brew --repo)"
$ git remote set-url origin https://github.com/Homebrew/brew.git

重置homebrew-core.git:

$ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
$ git remote set-url origin https://github.com/Homebrew/homebrew-core.git

相关文章

  • 2019-03-02 git加速 brew加速

    git 修改hosts文件 brew 取电子科大或者清华:Homebrew的更新源由三部分组成:本体(brew.g...

  • Mac下快速搭建Laravel或者yii2开发环境

    安装 git (brew install git) 安装 Docker for mac Docker 阿里云加速器...

  • brew加速

    brew.git 替换brew.git 仓库地址: 还原 homebrew-core.git 替换homebrew...

  • Git用shadowsocks加速

    Git用shadowsocks加速 用shadowsocks加速git clone git开启http/https...

  • Git 加速

    修改本地host 通过 IPAddress.com 获取下列地址对应IPgithub.comgithub.glob...

  • Mac brew 国内加速

    1.brew 安装加速curl -fsSL https://raw.githubusercontent.com/H...

  • 使用 Homebrew 安装 tree

    默认情况需要提前安装 Homebrew并使用USTC Mirror加速 brew install tree tre...

  • Github

    git clone 太慢加速的方法: 修改hosts文件,加上

  • git clone 加速

    方法1:镜像加速 git clone 加速,只需1秒就可提升几十倍速度,亲测有效。使用 github 的镜像网站进...

  • git clone 加速

    将 github.com 换为 github.com.cnpmjs.org

网友评论

      本文标题:2019-03-02 git加速 brew加速

      本文链接:https://www.haomeiwen.com/subject/luveuqtx.html