cmder中文乱码
打开设置; Startup-Environment; 添加 set LANG=zh_CN.UTF-8
-
git status时中文文件名乱码
现象:
\344\275\240\345\245\275执行以下命令即可:
git config --global core.quotepath falsequotepath解释:
The commands that output paths (e.g. ls-files, diff), when not given the -z option,will quote "unusual" characters in the pathname by enclosing the pathname in a double-quote pair and with backslashes the same way strings in C source code are quoted. If this variable is set to false, the bytes higher than 0x80 are not quoted but output as verbatim. Note that double quote, backslash and control characters are always quoted without -z regardless of the setting of this variable.
-
git log 查看提交中含中文乱码
现象:
<E4><BF><AE><E6>修改git全局配置设置提交和查看日志编码都是utf-8
git config --global i18n.commitencoding utf-8 git config --global i18n.logoutputencoding utf-8
修改git目录下etc\profile文件,设置less的字符集为utf-8
export LESSCHARSET=utf-8修改cmder目录vendor\init.bat文件,添加以下代码,设定cmder编码为utf-8
@chcp 65001 > nulchcp 65001的解释:
Why is there no option to choose codepage 65001 (UTF-8) as a default codepage in console window
-
gitk查看中文乱码
git config --global gui.encoding utf-8
AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。
更多推荐


所有评论(0)