git rm如何删除中文文件名的文件

用git rm直接删除中文文件名的文件时,不管加不加git提示的那个双引号,用git删除时都会提示路径找不到,

正确的方法有两种

1

修改git的配置

git config --global core.quotepath false

git config --help中的说明为:

       core.quotePath
           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.

core.quotepath设为false的话,git不会对值为128以上的非ascii 码字符进行quote


在~/.gitconfig中加入这句

[core]
quotepath = false

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值