Junio C Hamano <gitster@xxxxxxxxx> writes: > Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> writes: > >> So this patch may actually be "production ready" apart from the fact >> that some tests still fail (at least t2027-worktree-list.sh) because >> of different short SHA1 cases. > > t2027 has at least two problems. > > * "git worktree" does not read the core.abbrev configuration, > without a recent fix in jc/worktree-config, i.e. d49028e6 > ("worktree: honor configuration variables", 2016-09-26). > > * The script uses "git rev-parse --short HEAD"; I suspect that it > says "ah, default_abbrev is -1 and minimum_abbrev is 4, so let's > try abbreviating to 4 hexdigits". > > The first failure in t3203 seems to come from the same issue in > "rev-parse --short". A quick and dirty fix for it may look like this. We leave the variable abbrev to DEFAULT_ABBREV and let find_unique_abbrev() react to "eh, -1? I need to do the auto-scaling". "git diff-tree --abbrev" seems to have a similar problem, and the fix is the same. There still are breakages seen in t5510 and t5526 that are about the verbose output of "git fetch". I'll stop digging at this point tonight, and welcome others who look into it ;-) builtin/rev-parse.c | 14 ++++++++------ diff.c | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/builtin/rev-parse.c b/builtin/rev-parse.c index 76cf05e2ad..f8c8c6c22e 100644 --- a/builtin/rev-parse.c +++ b/builtin/rev-parse.c @@ -642,13 +642,15 @@ int cmd_rev_parse(int argc, const char **argv, const char *prefix) starts_with(arg, "--short=")) { filter &= ~(DO_FLAGS|DO_NOREV); verify = 1; - abbrev = DEFAULT_ABBREV; - if (arg[7] == '=') + if (arg[7] != '=') { + abbrev = DEFAULT_ABBREV; + } else { abbrev = strtoul(arg + 8, NULL, 10); - if (abbrev < MINIMUM_ABBREV) - abbrev = MINIMUM_ABBREV; - else if (40 <= abbrev) - abbrev = 40; + if (abbrev < MINIMUM_ABBREV) + abbrev = MINIMUM_ABBREV; + else if (40 <= abbrev) + abbrev = 40; + } continue; } if (!strcmp(arg, "--sq")) { diff --git a/diff.c b/diff.c index c6da383c56..cefc13eb8e 100644 --- a/diff.c +++ b/diff.c @@ -3399,7 +3399,7 @@ void diff_setup_done(struct diff_options *options) */ read_cache(); } - if (options->abbrev <= 0 || 40 < options->abbrev) + if (40 < options->abbrev) options->abbrev = 40; /* full */ /*