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 checkout HEAD^ -- file.txt git commit --amend
如果您不需要修改提交日志消息,最后一个命令可以是
git commit --amend -C HEAD
它甚至没有打开你的编辑器来编辑提交日志,它只是修改它。