git add报错信息如下
git add "XHQB/launchscreen.xcassets/LaunchImage.launchimage/\345\260\217\350\212\261\347\214\253-\351\251\254\347\224\262_1242x2208.png"
fatal: pathspec 'XHQB/launchscreen.xcassets/LaunchImage.launchimage/\345\260\217\350\212\261\347\214\253-\351\251\254\347\224\262_1242x2208.png' did not match any files
工程里面替换启动图片之后,提交代码,git add 图片路径之后,图片命名中含有汉字,git add不成功。报错信息如下。
百度之后找到答案,原来git默认是不能识别中文的。需要在终端修改能识别中文。
git config --global core.quotepath false