top / index / prev / next / target / source
日記形式でつづる いがぴょんコラム ウェブページです。
補完の効く git を利用したかったので、Homebrew 経由で git をインストールしました。
この手順は 2017-02-19 diary: [Mac][shell] .bashrc を有効にする かそれと同等を設定を前提とします。
あらかじめ git の補完をインストールします。
brew install bash-completion
.bashrc
if [ -f $(brew --prefix)/etc/bash_completion ]; then
source $(brew --prefix)/etc/bash_completion
fi
そして git をインストールします。
brew install git
Last modified: $Date: 2017-02-21 $