git bash中文文件名无法正确显示
Posted lzyang121
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git bash中文文件名无法正确显示相关的知识,希望对你有一定的参考价值。
git bash 客户端第一次查看文件时,无法正确显示中文的文件名,输入以下命令即可解决
git config --global core.quotepath false # 显示 status 编码 git config --global gui.encoding utf-8 # 图形界面编码 git config --global i18n.commit.encoding utf-8 # 提交信息编码 git config --global i18n.logoutputencoding utf-8 # 输出 log 编码 export LESSCHARSET=utf-8 # 最后一条命令是因为 git log 默认使用 less 分页,所以需要 bash 对 less 命令进行 utf-8 编码
以上是关于git bash中文文件名无法正确显示的主要内容,如果未能解决你的问题,请参考以下文章