gpt4 book ai didi

git - 如何在 git diff 输出中正确显示重音

转载 作者:行者123 更新时间:2023-12-05 02:22:20 25 4
gpt4 key购买 nike

当我运行 git diff 命令时,在文件列表中所有带有重音符号的文件都显示得很差:

 git diff --name-status xxxx yyyyyy

返回

M       "\303\251\303\251.txt"

我怎样才能保留口音来拥有这个? :

M       "éé.txt"

谢谢

编辑:我指定文件以 UTF-8 编码,我尝试使用 OSX 的 git 2.3.2 和 Ubuntu 的 git 1.9.1

最佳答案

你可以简单地做:

git config core.quotepath off   
# or
git config --global core.quotepath off

参见 Git for Windows Unicode Support -- Settings .

By default, git will print non-ASCII file names in quoted octal notation, i.e. "\nnn\nnn...".
This can be disabled with:

 git config [--global] core.quotepath off

我刚刚用 latest Git for Windows 2.3.5 测试了它.

关于git - 如何在 git diff 输出中正确显示重音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29667339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com