gacky's report
mindiagacky's report見出し語

git設定

gacky · 2012-04-28 更新

エイリアスの設定

例えばこんな感じ。

$ git config --global alias.st "status"

設定ファイルの場所

~/.gitconfig

vi ~/.gitconfig

設定を追加したり変更してもOK
↓こんな風に書いてある

[alias]
  st = status

色をつける

[color]
  status = auto
  diff = auto
  grep = auto

などなど!

関連する見出し語