标签: git
我已经用git做了一些改变。现在我想更改提交文本。有没有可能这样做?我正在使用eclipse git和gittortoise
答案 0 :(得分:3)
你可以使用 git commit --amend -m" message" ,或者可以这样做,这相当于:
$ git reset --soft HEAD $ ... do something else to come up with the right tree ... $ git commit -c ORIG_HEAD