git設定の履歴
エイリアスの設定
例えばこんな感じ。
$ git config --global alias.st "status"
設定ファイルの場所
~/.gitconfig
vi ~/.gitconfig
で設定を追加したり変更してもOK
↓こんな風に書いてある
[alias] st = status
色をつける
[color] status = auto diff = auto grep = auto
などなど!
例えばこんな感じ。
$ git config --global alias.st "status"
~/.gitconfig
vi ~/.gitconfig
で設定を追加したり変更してもOK
↓こんな風に書いてある
[alias] st = status
[color] status = auto diff = auto grep = auto
などなど!