概要
Git において、日本語のファイル名やパス名が化ける。
1 2 3 4 5 6 7 8 9 10 |
$ git status On branch master No commits yet Untracked files: (use "git add <file>..." to include in what will be committed) "\343\201\212\350\252\255\343\201\277\343\201\217\343\201\240\343\201\225\343\201\204.txt" nothing added to commit but untracked files present (use "git add" to track) |
解決策
マルチバイト文字列のエスケープ処理を無効にする。
1 |
$ git config --global core.quotepath false |
設定変更後
1 2 3 4 5 6 7 8 9 10 |
$ git status On branch master No commits yet Untracked files: (use "git add <file>..." to include in what will be committed) お読みください.txt nothing added to commit but untracked files present (use "git add" to track) |