There\'s ways to change the message from later commits:
git commit --amend # for the most recent co
Assuming that you have a clean working tree, you can do the following.
# checkout the root commit git checkout # amend the commit git commit --amend # rebase all the other commits in master onto the amended root git rebase --onto HEAD HEAD master