[git-users] How do I modify the commit message (not the topmost one) of a git commit?

2013-05-04 Thread Norah Jones
Hi, I did a series of commits and now I find one of my commit (not the topmost one) has an incorrect commit message. How can I change that specific one? I believe git commit --amend works only for the last commit. Thanks, Norah Jones -- You received this message because you are subscribed

Re: [git-users] How do I modify the commit message (not the topmost one) of a git commit?

2013-05-04 Thread William Seiti Mizuta
Hi Norah, you can use the interactive rebase to change a commit message. For this, get the commit's hash of the commit before the one you want to change. For example, if you have the following commits: A - B - C - D - E - F where F is the newest commit and you want to change the commit message