git status で日本語のファイル名を表示できなかった
git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
"memo/\343\201\246\343\201\231\343\201\250.txt"
対応策
gitの設定を変えてやればいい
git config --local core.quotepath false
↓設定反映後
git status
On branch master
Untracked files:
(use "git add <file>..." to include in what will be committed)
memo/てすと.txt
その他
ちなみに.gitconfigに記載する場合は下記の[core]のブロックを追加してやればいい
.gitconfig
[alias]
st = status
ci = commit
co = checkout
bra = branch
[user]
name = KTakata
email = hogehoge@test.com
[gui]
encoding = utf-8
[core]
quotepath = false