Browse Source

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
maint
Junio C Hamano 6 years ago
parent
commit
a29b8bcf62
  1. 2
      Documentation/rev-list-options.txt
  2. 1
      builtin/pack-objects.c
  3. 1
      builtin/prune.c
  4. 1
      builtin/rev-list.c
  5. 3
      revision.c
  6. 1
      revision.h
  7. 4
      t/t4202-log.sh
  8. 4
      t/t8002-blame.sh

2
Documentation/rev-list-options.txt

@ -761,7 +761,6 @@ Unexpected missing objects will raise an error. @@ -761,7 +761,6 @@ Unexpected missing objects will raise an error.
+
The form '--missing=print' is like 'allow-any', but will also print a
list of the missing objects. Object IDs are prefixed with a ``?'' character.
endif::git-rev-list[]

--exclude-promisor-objects::
(For internal use only.) Prefilter object traversal at
@ -769,6 +768,7 @@ endif::git-rev-list[] @@ -769,6 +768,7 @@ endif::git-rev-list[]
stronger than `--missing=allow-promisor` because it limits the
traversal, rather than just silencing errors about missing
objects.
endif::git-rev-list[]

--no-walk[=(sorted|unsorted)]::
Only show the given commits, but do not traverse their ancestors.

1
builtin/pack-objects.c

@ -3107,6 +3107,7 @@ static void get_object_list(int ac, const char **av) @@ -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 */

1
builtin/prune.c

@ -120,6 +120,7 @@ int cmd_prune(int argc, const char **argv, const char *prefix) @@ -120,6 +120,7 @@ int cmd_prune(int argc, const char **argv, const char *prefix)
save_commit_buffer = 0;
read_replace_refs = 0;
ref_paranoia = 1;
revs.allow_exclude_promisor_objects_opt = 1;
repo_init_revisions(the_repository, &revs, prefix);

argc = parse_options(argc, argv, prefix, options, prune_usage, 0);

1
builtin/rev-list.c

@ -374,6 +374,7 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix) @@ -374,6 +374,7 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix)
git_config(git_default_config, NULL);
repo_init_revisions(the_repository, &revs, prefix);
revs.abbrev = DEFAULT_ABBREV;
revs.allow_exclude_promisor_objects_opt = 1;
revs.commit_format = CMIT_FMT_UNSPECIFIED;
revs.do_not_die_on_missing_tree = 1;


3
revision.c

@ -2138,7 +2138,8 @@ static int handle_revision_opt(struct rev_info *revs, int argc, const char **arg @@ -2138,7 +2138,8 @@ static int handle_revision_opt(struct rev_info *revs, int argc, const char **arg
revs->limited = 1;
} else if (!strcmp(arg, "--ignore-missing")) {
revs->ignore_missing = 1;
} else if (!strcmp(arg, "--exclude-promisor-objects")) {
} else if (revs->allow_exclude_promisor_objects_opt &&
!strcmp(arg, "--exclude-promisor-objects")) {
if (fetch_if_missing)
BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
revs->exclude_promisor_objects = 1;

1
revision.h

@ -156,6 +156,7 @@ struct rev_info { @@ -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 */

4
t/t4202-log.sh

@ -1703,4 +1703,8 @@ test_expect_success 'log --source paints symmetric ranges' ' @@ -1703,4 +1703,8 @@ test_expect_success 'log --source paints symmetric ranges' '
test_cmp expect actual
'

test_expect_success '--exclude-promisor-objects does not BUG-crash' '
test_must_fail git log --exclude-promisor-objects source-a
'

test_done

4
t/t8002-blame.sh

@ -118,4 +118,8 @@ test_expect_success '--no-abbrev works like --abbrev=40' ' @@ -118,4 +118,8 @@ test_expect_success '--no-abbrev works like --abbrev=40' '
check_abbrev 40 --no-abbrev
'

test_expect_success '--exclude-promisor-objects does not BUG-crash' '
test_must_fail git blame --exclude-promisor-objects one
'

test_done

Loading…
Cancel
Save