git status したときに表示される 日本語 が文字化けする問題を回避する
git status したらこんな感じに。
$ git status
ブランチ master
No commits yet
追跡されていないファイル:
(use "git add <file>..." to include in what will be committed)
todo.txt
"\343\201\212\351\207\221\343\201\273\343\201\227\343\201\204.txt"
日本語が文字化けしています。
これを正しく表示させるには以下のコマンドを実行します。
$ git config --local core.quotepath false
これで、
$ git status
ブランチ master
No commits yet
追跡されていないファイル:
(use "git add <file>..." to include in what will be committed)
todo.txt
お金ほしい.txt
となり、正しく日本語が表示されました。
元に戻したい場合は、
$ git config --local core.quotepath true
と true を設定すればよいです。
以上!