git commit edit code example

Example 1: amend last commit message

$ git commit --amend -m "New and correct message"

Example 2: git amend last commit message

$ git commit --amend -m "New and correct message"

Example 3: git amend

git commit --amend

Example 4: change commit message

git commit --amend
// press enter, editor would open

Example 5: git command change to previous comit

git revert --no-commit 0766c053..HEAD
git commit


If you really do want to have individual commits 
(instead of reverting everything with one big commit), 
then you can pass --no-edit instead of --no-commit, 
so that you don't have to edit a commit 
message for each reversion. – user456814

Example 6: git command change to previous comit

git reflog
git checkout HEAD@{...}