当我写命令行时:
git commit -m ™Initial commit™
我收到了一个错误:
error: pathspec '"commit\342\204\242"' did not match any file(s) known to git.
我该如何解决?
答案 0 :(得分:3)
这可能是那些搞笑的商标符号:
$ echo -e "\0342\0204\0242"
™
尝试手动输入git commit -m "initial commit"
,并使用标准"
引号 - ASCII八进制042,十进制34,十六进制0x22。
答案 1 :(得分:0)
这似乎是因为没有文件可以将git放入存储库。
创建一个空文件(例如.gitlock),然后在提交之前运行此命令:
git add .gitlock