Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install.sh: update comment for non-default Git remote setup
The existing comment is wrong, the commands are not for setting up PATHs: - Run these commands in your terminal to add the non-default Git remote for Homebrew/brew: echo '# Set PATH, MANPATH, etc., for Homebrew.' >> /Users/ruoyu/.zprofile echo 'export HOMEBREW_BREW_GIT_REMOTE="https://example.org/brew.git"' >> /Users/ruoyu/.zprofile export HOMEBREW_BREW_GIT_REMOTE="https://example.org/brew.git" With this change, the comment is updated to reflect the correct purpose of the commands: - Run these commands in your terminal to add the non-default Git remote for Homebrew/brew: echo '# Set non-default Git remote for Homebrew/brew.' >> /Users/ruoyu/.zprofile echo 'export HOMEBREW_BREW_GIT_REMOTE="https://example.org/brew.git"' >> /Users/ruoyu/.zprofile export HOMEBREW_BREW_GIT_REMOTE="https://example.org/brew.git"
- Loading branch information