summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2007-01-20 22:04:02 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-01-21 07:46:53 (GMT)
commit9c5e66e97da8cadcc45a278c4e39a7d25674d4ff (patch)
tree1f14d50a5398779c8738645fadd4b325086bfc0b /Documentation
parenteaf6459e4d482af51429f9464125621b805eb5fd (diff)
downloadgit-9c5e66e97da8cadcc45a278c4e39a7d25674d4ff.zip
git-9c5e66e97da8cadcc45a278c4e39a7d25674d4ff.tar.gz
git-9c5e66e97da8cadcc45a278c4e39a7d25674d4ff.tar.bz2
Teach revision machinery about --reverse
The option --reverse reverses the order of the commits. [jc: with comments on rev_info.reverse from Simon 'corecode' Schubert.] Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-rev-list.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/git-rev-list.txt b/Documentation/git-rev-list.txt
index a996f6c..beb0906 100644
--- a/Documentation/git-rev-list.txt
+++ b/Documentation/git-rev-list.txt
@@ -27,6 +27,7 @@ SYNOPSIS
[ \--pretty | \--header ]
[ \--bisect ]
[ \--merge ]
+ [ \--reverse ]
[ \--walk-reflogs ]
<commit>... [ \-- <paths>... ]
@@ -266,6 +267,10 @@ By default, the commits are shown in reverse chronological order.
parent comes before all of its children, but otherwise things
are still ordered in the commit timestamp order.
+--reverse::
+
+ Output the commits in reverse order.
+
Object Traversal
~~~~~~~~~~~~~~~~