summaryrefslogtreecommitdiffstats
path: root/rev-list-options.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-09-08 14:24:58 -0700
committerJunio C Hamano <gitster@pobox.com>2021-09-08 14:24:58 -0700
commit810dc8f1583cea4aa8bebdfbbc5da4b72f4b0b20 (patch)
tree3f156e3646a6885c2b825f13cc1670447fe86eb2 /rev-list-options.txt
parent7a031e5c8c444cac4c199ecf6538eb89f8862071 (diff)
downloadgit-htmldocs-810dc8f1583cea4aa8bebdfbbc5da4b72f4b0b20.tar.gz
Autogenerated HTML docs for v2.33.0-180-g8463be
Diffstat (limited to 'rev-list-options.txt')
-rw-r--r--rev-list-options.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/rev-list-options.txt b/rev-list-options.txt
index 24569b06d..b7bd27e17 100644
--- a/rev-list-options.txt
+++ b/rev-list-options.txt
@@ -968,6 +968,11 @@ list of the missing objects. Object IDs are prefixed with a ``?'' character.
objects.
endif::git-rev-list[]
+--unsorted-input::
+ Show commits in the order they were given on the command line instead
+ of sorting them in reverse chronological order by commit time. Cannot
+ be combined with `--no-walk` or `--no-walk=sorted`.
+
--no-walk[=(sorted|unsorted)]::
Only show the given commits, but do not traverse their ancestors.
This has no effect if a range is specified. If the argument
@@ -975,7 +980,8 @@ endif::git-rev-list[]
given on the command line. Otherwise (if `sorted` or no argument
was given), the commits are shown in reverse chronological order
by commit time.
- Cannot be combined with `--graph`.
+ Cannot be combined with `--graph`. Cannot be combined with
+ `--unsorted-input` if `sorted` or no argument was given.
--do-walk::
Overrides a previous `--no-walk`.