reset $COMMIT_ID``. Git stores the move of the branch's head in
reflog, so you can undo that undo later again.
+In a more complex situation you'd want to move some commits along with
+resetting the head of the branch. Cherry-pick them to the new branch.
+For example, if you want to reset the branch ``v2`` back to the
+original commit but preserve two commits created in the current branch
+do something like::
+
+ $ git branch save-v2 # create a new branch saving v2
+ $ git reflog # find the original place of v2
+ $ git reset $COMMIT_ID
+ $ git cherry-pick save-v2~ save-v2
+ $ git branch -D save-v2 # remove temporary branch
+
git revert: revert a commit
---------------------------