Skip to main content

One post tagged with "git"

View All Tags

Changing the Most Recent Commit

· 3 min read
koficodes
Just a person

The git commit --amend command allows you to change the most recent commit message.

Not pushed commit

To change the message of the most recent commit that has not been pushed to the remote repository, commit it again using the --amend flag.

  1. Navigate to the repository directory in your terminal.

  2. Run the following command to amend (change) the message of the latest commit:

git commit --amend -m "New commit message."