-
git の config ファイル
-
コミットメッセージのテンプレートを設定できるファイル
-
グローバル (たぶん Mac のユーザー単位) に gitignore したいものを書けるファイル
-
エディタに Vim に設定する
$ git config --global core.editor 'vim -c "set fenc=utf-8"'
-
git status で日本語のファイル名をちゃんと出す
$ git config --global core.quotepath off
-
現在の設定を確認する
$ git config --list