diff options
author | Junio C Hamano <junkio@cox.net> | 2006-12-25 03:27:41 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-25 03:27:41 -0800 |
commit | d4ada4876d5ab7b271857917231f6006f2160bca (patch) | |
tree | dc69a89700ed2ac8889145bf5ba859cd6241f0c7 /Documentation | |
parent | 6f38e0372266b5d674972e7039f8bd4156589558 (diff) | |
parent | d5db6c9ee79cfa1794d75847b8376430f08b203f (diff) | |
download | git-d4ada4876d5ab7b271857917231f6006f2160bca.tar.gz git-d4ada4876d5ab7b271857917231f6006f2160bca.tar.xz |
Merge branch 'jc/skip-count'
* jc/skip-count:
revision: --skip=<n>
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 ec43c0b3a..9e0dcf8d3 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. |