使用git与非罗马语言?

Git是一个非常棒的工具,但我发现它似乎主要(或仅)为英语使用者设计.有谁知道如何让git与其他语言很好地配合,它几乎不可用.解释问题的最佳方法是显示一些git输出:

# Changes to be committed:
#   (use "git rm --cached <file>..." to unstage)
#
#   new file:   "103\350\254\233\347\276\251 \347\254\2546\346\230\237\346\234\237 5\351\240\201.txt"
#   new file:   "201\350\254\233\347\276\251 \347\254\2545\346\230\237\346\234\237 1\351\240\201.txt"
#   new file:   "201\350\254\233\347\276\251 \347\254\2545\346\230\237\346\234\237 2\351\240\201.txt"
#   new file:   "201\350\254\233\347\276\251 \347\254\2545\346\230\237\346\234\237 3\351\240\201.txt"
#   new file:   "201\350\254\233\347\276\251 \347\254\2545\346\230\237\346\234\237 4\351\240\201.txt"
#   new file:   "201\350\254\233\347\276\251 \347\254\2545\346\230\237\346\234\237 5\351\240\201.txt"
#   new file:   "201\350\254\233\347\276\251 \347\254\2546\346\230\237\346\234\237 1\351\240\201.txt"
#   new file:   "PAC2 \347\254\254\345\233\233\350\252\262.sh"
#   new file:   "PAC2 \347\254\254\345\233\233\350\252\262.sh"
#   new file:   "PAC2 \347\254\254\345\233\233\350\252\262.sh"
#   new file:   "\344\270\255\346\226\207\350\252\236\346\263\225.txt"
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#   "\344\270\255\346\226\207\350\252\236\346\263\225.txt.bak"

嗯,我想知道将要提交的文件是什么?!?!

最佳答案 设置

git config core.quotepath false

有帮助.

Source

点赞