How do I edit an incorrect commit message in Git?
To change the commit message git commit –amend -m “New commit message” Used to amend the tip of the current branch. Prepare the tree object you would want to replace the latest commit as usual (this includes the usual -i/-o and explicit paths), and the commit log editor is seeded with the commit message from the tip of the current branch. The commit you create … Continue reading How do I edit an incorrect commit message in Git?