Skip to content

Git, Edit last commit.

bash
git stash # if you have changes
git rebase -i HEAD^
# Change 'pick' to 'edit' in the commit you want to edit

git stash pop # if you had changes

dit add <files>
git commit --amend
git rebase --continue

# if you have more commits to edit, repeat the process

# then push the changes

git push origin <branch> --force