include agent identifier in capability string
[gitweb.git] / Documentation / git-revert.txt
index 783ffb4a68f757c42e5f546f73b25f6d270dc426..70152e8b1eb31e5ed6e7da889a424bc65c1f16c2 100644 (file)
@@ -7,8 +7,11 @@ git-revert - Revert some existing commits
 
 SYNOPSIS
 --------
+[verse]
 'git revert' [--edit | --no-edit] [-n] [-m parent-number] [-s] <commit>...
-'git revert' --reset
+'git revert' --continue
+'git revert' --quit
+'git revert' --abort
 
 DESCRIPTION
 -----------
@@ -97,12 +100,12 @@ include::sequencer.txt[]
 
 EXAMPLES
 --------
-git revert HEAD~3::
+`git revert HEAD~3`::
 
        Revert the changes specified by the fourth last commit in HEAD
        and create a new commit with the reverted changes.
 
-git revert -n master{tilde}5..master{tilde}2::
+`git revert -n master~5..master~2`::
 
        Revert the changes done by commits from the fifth last commit
        in master (included) to the third last commit in master