Git - changing the committed comment

less than 1 minute read

Basic steps.\
git log –pretty=oneline -10\
git rebase -i xxxx\
-> change ‘pick’ to ‘reword’\
git commit\
git rebase –continue

details is the following url.\
https://help.github.com/articles/changing-a-commit-message/