Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对Git commit有一个小问题。所以我正在做一些项目并使用Git。我做了一个Git 提交,但我不小心写了一个错误的提交消息。所以我的问题是:
无论如何我可以更改 Git 中的提交消息吗?
注意:我试图这样做:
git commit -a --amend -m "New Commit Message"
但它不起作用。为什么?
谢谢。
失去第一个-a你没有添加任何文件,你只是改变了 HEAD 提交:
-a
git commit --amend -m"New Commit Message"