Documentation/git.txt: link git-svn and git-instaweb from the main page.
[gitweb.git] / Documentation / git-rev-list.txt
index 6c370e1bef9a83cd756146f6a3739abb4d08b4ed..f60eacd93e96a080689569b1afd6736c05554ab7 100644 (file)
@@ -56,6 +56,9 @@ OPTIONS
        Print the contents of the commit in raw-format; each
        record is separated with a NUL character.
 
+--parents::
+       Print the parents of the commit.
+
 --objects::
        Print the object IDs of any object referenced by the listed commits.
        'git-rev-list --objects foo ^bar' thus means "send me all object IDs
@@ -64,7 +67,7 @@ OPTIONS
 
 --objects-edge::
        Similar to `--objects`, but also print the IDs of
-       excluded commits refixed with a `-` character.  This is
+       excluded commits prefixed with a `-` character.  This is
        used by `git-pack-objects` to build 'thin' pack, which
        records objects in deltified form based on objects
        contained in these excluded commits to reduce network
@@ -102,6 +105,9 @@ OPTIONS
 --remove-empty::
        Stop when a given path disappears from the tree.
 
+--no-merges::
+       Do not print commits with more than one parent.
+
 --not::
        Reverses the meaning of the '{caret}' prefix (or lack
        thereof) for all following revision specifiers, up to