how to append the commit message in git repo code example
Example 1: edit last commit message
git commit --amend -m "New commit message."
Example 2: change commit message
git commit --amend
// press enter, editor would open
git commit --amend -m "New commit message."
git commit --amend
// press enter, editor would open