git commit amend old commit code example
Example 1: git amend
git commit --amend
Example 2: added changes to a specific commit
git add <my fixed files>
git commit --fixup=OLDCOMMIT
git rebase --interactive --autosquash OLDCOMMIT^
git commit --amend
git add <my fixed files>
git commit --fixup=OLDCOMMIT
git rebase --interactive --autosquash OLDCOMMIT^