1. 檢查當前 git 版本
$ git --version
2. 備份 git
$ sudo mv /usr/bin/git /usr/bin/git-apple
3. 如果沒安裝 homebrew 則安裝
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
切換國內映象加速訪問
$ cd "$(brew --repo)"
$ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
$ cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
$ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
$ brew update
# 如果使用 iterm2,將下面的 `.bash_profile` 替換為 `.zshrc`
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile
$ source ~/.bash_profile
4. 已安裝 homebrew 則更新
$ brew update && brew upgrade
5. 使用 homebrew 安裝 git
$ brew install git
6. 檢視更新後的版本
$ git --version
7. 下次更新 git 只需
$ brew update && brew upgrade