# homebrew-brew **Repository Path**: wenjunxiao/homebrew-brew ## Basic Information - **Project Name**: homebrew-brew - **Description**: mac-docker-connector for homebrew - **Primary Language**: Ruby - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-05-24 - **Last Updated**: 2024-01-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # homebrew-brew This is a tap for homebrew. ## Usage Once this tap is installed, you can install the tools I provided through brew. Such as, [mac-docker-connector](https://github.com/wenjunxiao/mac-docker-connector). ```bash $ brew tap wenjunxiao/brew $ brew install docker-connector $ brew install docker-accessor ``` Or you can directly install through the following command, when there is a name conflict or not. ```bash $ brew install wenjunxiao/brew/docker-connector ``` If github is slow, also can install from [gitee.com](https://gitee.com/wenjunxiao) ```bash $ brew tap wenjunxiao/brew https://gitee.com/wenjunxiao/homebrew-brew ``` Here is a command to view the installation location of tap ``` $ cd `brew --repo`/Library/Taps $ ls homebrew wenjunxiao ``` ## Slow Solution If brew slow and blocked in update stage. you can change the source of repo. Use `brew update --verbose` to show which repo is slow. ### `brew core` Change the brew core source to [ustc](https://lug.ustc.edu.cn/wiki/mirrors/help/brew.git). ```bash $ cd "$(brew --repo)" $ git remote set-url origin https://mirrors.ustc.edu.cn/brew.git $ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" $ git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git $ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-cask" $ git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git ``` Restore when the mirror is unavailable ```bash $ cd "$(brew --repo)" $ git remote set-url origin https://github.com/Homebrew/brew.git $ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" $ git remote set-url origin https://github.com/Homebrew/homebrew-core.git $ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-cask" $ git remote set-url origin https://github.com/Homebrew/homebrew-cask.git ```