diff options
| author | Junio C Hamano <gitster@pobox.com> | 2018-11-06 15:50:21 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-11-06 15:50:21 +0900 |
| commit | a29b8bcf624006cf66abe129c01c932ec75df9f7 (patch) | |
| tree | f0b2fe07b7913d36e9151fc995aa3a31e3ffae65 /builtin/pack-objects.c | |
| parent | 8ac6990b8712cb7c44dfc4ff8d9e99b5ec55b01d (diff) | |
| parent | 669b1d2aaec73ba762bf566078308075886ca208 (diff) | |
| download | git-a29b8bcf624006cf66abe129c01c932ec75df9f7.tar.gz | |
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 'builtin/pack-objects.c')
| -rw-r--r-- | builtin/pack-objects.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c index e50c6cd1ff..c99ee79c31 100644 --- a/builtin/pack-objects.c +++ b/builtin/pack-objects.c @@ -3107,6 +3107,7 @@ static void get_object_list(int ac, const char **av) repo_init_revisions(the_repository, &revs, NULL); save_commit_buffer = 0; + revs.allow_exclude_promisor_objects_opt = 1; setup_revisions(ac, av, &revs, NULL); /* make sure shallows are read */ |
