You can amend a committed message in git by using the below command
git commit –amend
How to amend a committed message in Git?
The above command will open the editor which lets the users to change the most recently entered message.
You can also specify the new commit message with the command line directly as shown below.
git commit –amend -m “New commit message from ginktage”