Git can';不显示俄语

Git can';不显示俄语,git,unicode,Git,Unicode,我在Windows上使用Git Bash。当我键入例如git status时,我有: modified: programming/_methods and theory/programming.tex modified: "\320\274\320\260\321\202\320\265\320\274\320\260\321\202\320\270\320\272\320\260/ \321\202\320\265\320\276\321\20

我在Windows上使用Git Bash。当我键入例如
git status
时,我有:

        modified:   programming/_methods and theory/programming.tex
        modified:   "\320\274\320\260\321\202\320\265\320\274\320\260\321\202\320\270\320\272\320\260/
\321\202\320\265\320\276\321\200\320\270\321\217\320\262\320\265\321\200\320\276\321\217\321\202\320
\275\320\276\321\201\321\202\320\270 \320\270321\201\321\202\320\260\321\202\320\270\321\201\321\202\320\270\320\272
\320\260/\321\215\320\273\320\265\320\274\320\265\320\275\321\202\321\213 \321\202\320\265\320\276\321\200\320\270\320\270 
\320\262\320\265\321\200\320\276\321\217\321\202\320\275\320\276\321\201\321\202\320\270.pdf"
这是因为文件夹中有俄文符号


我不知道git的设置,有人能帮我吗,如何让git以俄语显示文件夹的名称?

git会有问题吗?或者可能是终端没有正确解析编码的问题?你有一个俄文内容的纯文本文件吗?这样您就可以运行
cat文件
并查看内容是否正确显示了?尝试使用
cmd
而不是
git bash
,这会有什么不同吗?尝试
git-c core.quotepath=false status
。如果有效,请运行
git config--global core.quotepath false
。git bash中有哪种语言环境?其他撰写评论的人感谢您的关注,但@ElpieKay的回答非常有效,因此问题得到了解决。:)祝你好运!