解决windows下git bash中文乱码问题

因为windows下默认编码并不是一般项目使用的UTF-8,所以在使用git bash时总会出现乱码现象,本文仅就我在使用git bash时出现的问题提出解决办法,并整理别人出现的问题及解决方法。

解决中文输入问题

在git bash下输入以下两条命令:

$ set output-meta on #bash中可以正常输入中文
$ set convert-meta off 

git log中文乱码问题

解决此问题需要设置Git bash支持UTF-8编码,所以在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 编码

ls文件列表中文乱码

在git bash下输入命令:

alias ls='ls --show-control-chars --color=auto' #ls能够正常显示中文"

解决git status中文乱码问题

git bash下输入以下命令:

git config --global core.quotepath false