Skip to content

Commit 18fd805

Browse files
committed
Merge branch 'jh/diff-index-line-abbrev'
* jh/diff-index-line-abbrev: diff.c: Ensure "index $from..$to" line contains unambiguous SHA1s Conflicts: diff.c
2 parents ecdb3ec + 3e5a188 commit 18fd805

File tree

2 files changed

+38
-3
lines changed

2 files changed

+38
-3
lines changed

diff.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2430,9 +2430,9 @@ static void fill_metainfo(struct strbuf *msg,
24302430
(!fill_mmfile(&mf, two) && diff_filespec_is_binary(two)))
24312431
abbrev = 40;
24322432
}
2433-
strbuf_addf(msg, "%sindex %.*s..%.*s", set,
2434-
abbrev, sha1_to_hex(one->sha1),
2435-
abbrev, sha1_to_hex(two->sha1));
2433+
strbuf_addf(msg, "%sindex %s..", set,
2434+
find_unique_abbrev(one->sha1, abbrev));
2435+
strbuf_addstr(msg, find_unique_abbrev(two->sha1, abbrev));
24362436
if (one->mode == two->mode)
24372437
strbuf_addf(msg, " %06o", one->mode);
24382438
strbuf_addf(msg, "%s\n", reset);

t/t4044-diff-index-unique-abbrev.sh

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/bin/sh
2+
3+
test_description='test unique sha1 abbreviation on "index from..to" line'
4+
. ./test-lib.sh
5+
6+
cat >expect_initial <<EOF
7+
100644 blob 51d2738463ea4ca66f8691c91e33ce64b7d41bb1 foo
8+
EOF
9+
10+
cat >expect_update <<EOF
11+
100644 blob 51d2738efb4ad8a1e40bed839ab8e116f0a15e47 foo
12+
EOF
13+
14+
test_expect_success 'setup' '
15+
echo 4827 > foo &&
16+
git add foo &&
17+
git commit -m "initial" &&
18+
git cat-file -p HEAD: > actual &&
19+
test_cmp expect_initial actual &&
20+
echo 11742 > foo &&
21+
git commit -a -m "update" &&
22+
git cat-file -p HEAD: > actual &&
23+
test_cmp expect_update actual
24+
'
25+
26+
cat >expect <<EOF
27+
index 51d27384..51d2738e 100644
28+
EOF
29+
30+
test_expect_success 'diff does not produce ambiguous index line' '
31+
git diff HEAD^..HEAD | grep index > actual &&
32+
test_cmp expect actual
33+
'
34+
35+
test_done

0 commit comments

Comments
 (0)