在Git中更改错误的提交消息

Change the wrong commit message in Git

本问题已经有最佳答案,请猛点这里访问。

我对Git提交有一个小问题。所以我正在做一些项目并使用git。我做了一个Git提交,意外地写了一个错误的提交消息。所以我的问题是:

Is there anyway I can change the commit message in Git?

注:我试过这样做:

1
git commit -a --amend -m"New Commit Message"

但它不起作用。为什么?

谢谢。


丢失第一个-a。您没有添加任何文件,只是更改head commit:

1
git commit --amend -m"New Commit Message"