If you are using the Git GUI tool, there is a button named Amend last commit. Click on that button and then it will display your last commit files and message. Just edit that message, and you can commit it with a new commit message.
Or use this command from a console/terminal:
git commit -a --amend -m "My new commit message"