]> git.ipfire.org Git - thirdparty/git.git/blobdiff - Documentation/git-cherry-pick.txt
docs: stop using asciidoc no-inline-literal
[thirdparty/git.git] / Documentation / git-cherry-pick.txt
index fed5097e00b4a031c2992ac3d421f6df975e6152..06a0bfde8d5ce8fdc5aaa1afd6af8d9c75e419ad 100644 (file)
@@ -130,7 +130,7 @@ EXAMPLES
        Apply the changes introduced by all commits that are ancestors
        of master but not of HEAD to produce new commits.
 
-`git cherry-pick master{tilde}4 master{tilde}2`::
+`git cherry-pick master~4 master~2`::
 
        Apply the changes introduced by the fifth and third last
        commits pointed to by master and create 2 new commits with
@@ -151,7 +151,7 @@ EXAMPLES
        are in next but not HEAD to the current branch, creating a new
        commit for each new change.
 
-`git rev-list --reverse master \-- README | git cherry-pick -n --stdin`::
+`git rev-list --reverse master -- README | git cherry-pick -n --stdin`::
 
        Apply the changes introduced by all commits on the master
        branch that touched README to the working tree and index,