git提交错误信息

发布于 2025-01-02 03:58:55 字数 208 浏览 1 评论 0原文

当我编写命令行时:

git commit -m ™Initial commit™

我收到错误:

error: pathspec '"commit\342\204\242"' did not match any file(s) known to git.

如何修复它?

When I write a command line:

git commit -m ™Initial commit™

I got an error:

error: pathspec '"commit\342\204\242"' did not match any file(s) known to git.

How can i fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生来就爱笑 2025-01-09 03:58:55

这可能是那些搞笑的 ™ 商标符号:

$ echo -e "\0342\0204\0242"
™

尝试手动输入 git commit -m "initial commit",并使用标准 " 引号 - ASCII 八进制 042,十进制 34,十六进制 0x22。

It's probably those hilarious ™ trademark symbols:

$ echo -e "\0342\0204\0242"
™

Try typing in, by hand, git commit -m "initial commit", and using the standard " quotes -- ASCII octal 042, decimal 34, hex 0x22.

静若繁花 2025-01-09 03:58:55

看来这是因为没有 git 可以放入存储库的文件。

创建一个空文件(例如 .gitlock),然后在提交之前运行以下命令:

git add .gitlock

It seems this is because there is no file that git could be put into the repository.

Create an empty file (for example .gitlock), and then run this command before committing:

git add .gitlock
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文