diff options
author | Junio C Hamano <junkio@cox.net> | 2006-12-19 18:25:32 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-20 11:26:11 -0800 |
commit | d5db6c9ee79cfa1794d75847b8376430f08b203f (patch) | |
tree | 2ee917ce3959b7fd6d6e5bfc15c0e986a6c5b615 /Documentation | |
parent | Merge branch 'maint' (diff) | |
download | tgif-d5db6c9ee79cfa1794d75847b8376430f08b203f.tar.xz |
revision: --skip=<n>
This adds --skip=<n> option to revision traversal machinery.
Documentation and test were added by Robert Fitzsimons.
Signed-off-by: Robert Fitzsimons <robfitz@273k.net>
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 ec43c0b3a8..9e0dcf8d3f 100644 --- a/Documentation/git-rev-list.txt +++ b/Documentation/git-rev-list.txt @@ -10,6 +10,7 @@ SYNOPSIS -------- [verse] 'git-rev-list' [ \--max-count=number ] + [ \--skip=number ] [ \--max-age=timestamp ] [ \--min-age=timestamp ] [ \--sparse ] @@ -139,6 +140,10 @@ limiting may be applied. Limit the number of commits output. +--skip='number':: + + Skip 'number' commits before starting to show the commit output. + --since='date', --after='date':: Show commits more recent than a specific date. |