Problem Statement
How do you squash the last 3 commits into one with an edited message using interactive rebase?
Explanation
Run `git rebase -i HEAD~3`; change second/third `pick` to `squash` (or `fixup`); save, then edit the combined message and complete the rebase.
Practice Sets
This question appears in the following practice sets:
