Three commits ago you wrote 'fix bug' but it was actually a feature. The whole team uses conventional commits.
Rewind past the badly-named commit, replay it, amend its message, then replay the two that followed.
Easy · 7 steps · +350 XP
This scenario walks through 7 steps, in order:
Try the terminal first — you learn more by doing. When you want to check yourself, here is the command for each step.
git branch backupgit reset --hard HEAD~3git cherry-pick backup~2git commit --amend -m "feat: add rate limiting"git cherry-pick backup~1git cherry-pick backupgit push --force-with-lease`reword` in a rebase todo is shorthand for exactly this: replay the commit, `git commit --amend -m` a better message, replay the rest.