diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-01-20 23:04:02 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-20 23:46:53 -0800 |
commit | 9c5e66e97da8cadcc45a278c4e39a7d25674d4ff (patch) | |
tree | 1f14d50a5398779c8738645fadd4b325086bfc0b /Documentation | |
parent | GIT v1.5.0-rc2 (diff) | |
download | tgif-9c5e66e97da8cadcc45a278c4e39a7d25674d4ff.tar.xz |
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.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/git-rev-list.txt b/Documentation/git-rev-list.txt index a996f6cb1e..beb090651b 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 ~~~~~~~~~~~~~~~~ |