Problem Statement
How do you revert a range of commits from A (older) to B (newer) in one go?
Explanation
Use `git revert --no-commit A^..B` to stage inverse changes for the range, review, then `git commit` once. Or `git revert A^..B` to create multiple revert commits.
Practice Sets
This question appears in the following practice sets: