如何使用新的提交ID

时间:2016-12-01 10:45:36

标签: git apache

我错误地通过以下步骤使用错误的提交ID号码来委托我的代码:

git stash
git pull --rebase
git stash apply
git add .
git commit -m "commitId: msg"
git push
git fetch

但现在我想改变自己的身份。 我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

使用git amend,您可以更改提交消息。 Amend将当前更改合并到先前的提交,并且还将更改提交哈希和消息。

$ git commit --amend --allow-empty -m "commitId: msg"   # Commit empty change
$ git push -f origin HEAD                               # Force (-f) push as history is changed