diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-11-06 07:50:21 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-06 07:50:21 +0100 |
commit | a29b8bcf624006cf66abe129c01c932ec75df9f7 (patch) | |
tree | f0b2fe07b7913d36e9151fc995aa3a31e3ffae65 /revision.h | |
parent | Merge branch 'jw/send-email-no-auth' (diff) | |
parent | exclude-promisor-objects: declare when option is allowed (diff) | |
download | git-a29b8bcf624006cf66abe129c01c932ec75df9f7.tar.xz git-a29b8bcf624006cf66abe129c01c932ec75df9f7.zip |
Merge branch 'md/exclude-promisor-objects-fix'
Operations on promisor objects make sense in the context of only a
small subset of the commands that internally use the revisions
machinery, but the "--exclude-promisor-objects" option were taken
and led to nonsense results by commands like "log", to which it
didn't make much sense. This has been corrected.
* md/exclude-promisor-objects-fix:
exclude-promisor-objects: declare when option is allowed
Documentation/git-log.txt: do not show --exclude-promisor-objects
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/revision.h b/revision.h index 1cd0c4b200..0d2abc2d36 100644 --- a/revision.h +++ b/revision.h @@ -156,6 +156,7 @@ struct rev_info { do_not_die_on_missing_tree:1, /* for internal use only */ + allow_exclude_promisor_objects_opt:1, exclude_promisor_objects:1; /* Diff flags */ |