Skip to content

Commit 371a655

Browse files
avargitster
authored andcommitted
fsck: support comments & empty lines in skipList
It's annoying not to be able to put comments and empty lines in the skipList, when e.g. keeping a big central list of commits to skip in /etc/gitconfig, which was my motivation for 1362df0 ("fetch: implement fetch.fsck.*", 2018-07-27). Implement that, and document what version of Git this was changed in, since this on-disk format can be expected to be used by multiple versions of git. There is no notable performance impact from this change, using the test setup described a couple of commits back: Test HEAD~ HEAD ---------------------------------------------------------------------------------------- 1450.3: fsck with 0 skipped bad commits 7.69(7.27+0.42) 7.86(7.48+0.37) +2.2% 1450.5: fsck with 1 skipped bad commits 7.69(7.30+0.38) 7.83(7.47+0.36) +1.8% 1450.7: fsck with 10 skipped bad commits 7.76(7.38+0.38) 7.79(7.38+0.41) +0.4% 1450.9: fsck with 100 skipped bad commits 7.76(7.38+0.38) 7.74(7.36+0.38) -0.3% 1450.11: fsck with 1000 skipped bad commits 7.71(7.30+0.41) 7.72(7.34+0.38) +0.1% 1450.13: fsck with 10000 skipped bad commits 7.74(7.34+0.40) 7.72(7.34+0.38) -0.3% 1450.15: fsck with 100000 skipped bad commits 7.75(7.40+0.35) 7.70(7.29+0.40) -0.6% 1450.17: fsck with 1000000 skipped bad commits 7.12(6.86+0.26) 7.13(6.87+0.26) +0.1% Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 3b41fb0 commit 371a655

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

Documentation/config.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1712,8 +1712,9 @@ will only cause git to warn.
17121712
fsck.skipList::
17131713
The path to a list of object names (i.e. one unabbreviated SHA-1 per
17141714
line) that are known to be broken in a non-fatal way and should
1715-
be ignored. Comments ('#') and empty lines are not supported, and
1716-
will error out.
1715+
be ignored. On versions of Git 2.20 and later comments ('#'), empty
1716+
lines, and any leading and trailing whitespace is ignored. Everything
1717+
but a SHA-1 per line will error out on older versions.
17171718
+
17181719
This feature is useful when an established project should be accepted
17191720
despite early commits containing errors that can be safely ignored

fsck.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,20 @@ static void init_skiplist(struct fsck_options *options, const char *path)
190190
die("Could not open skip list: %s", path);
191191
while (!strbuf_getline(&sb, fp)) {
192192
const char *p;
193+
const char *hash;
194+
195+
/*
196+
* Allow trailing comments, leading whitespace
197+
* (including before commits), and empty or whitespace
198+
* only lines.
199+
*/
200+
hash = strchr(sb.buf, '#');
201+
if (hash)
202+
strbuf_setlen(&sb, hash - sb.buf);
203+
strbuf_trim(&sb);
204+
if (!sb.len)
205+
continue;
206+
193207
if (parse_oid_hex(sb.buf, &oid, &p) || *p != '\0')
194208
die("Invalid SHA-1: %s", sb.buf);
195209
oidset_insert(&options->skiplist, &oid);

t/t5504-fetch-receive-strict.sh

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,20 +169,20 @@ test_expect_success 'fsck with invalid or bogus skipList input' '
169169
test_i18ngrep "Invalid SHA-1: \[core\]" err
170170
'
171171

172-
test_expect_success 'fsck with invalid or bogus skipList input (comments & empty lines)' '
172+
test_expect_success 'fsck with other accepted skipList input (comments & empty lines)' '
173173
cat >SKIP.with-comment <<-EOF &&
174174
# Some bad commit
175175
0000000000000000000000000000000000000001
176176
EOF
177177
test_must_fail git -c fsck.skipList=SKIP.with-comment fsck 2>err-with-comment &&
178-
test_i18ngrep "^fatal: Invalid SHA-1: # Some bad commit$" err-with-comment &&
178+
test_i18ngrep "missingEmail" err-with-comment &&
179179
cat >SKIP.with-empty-line <<-EOF &&
180180
0000000000000000000000000000000000000001
181181
182182
0000000000000000000000000000000000000002
183183
EOF
184184
test_must_fail git -c fsck.skipList=SKIP.with-empty-line fsck 2>err-with-empty-line &&
185-
test_i18ngrep "^fatal: Invalid SHA-1: " err-with-empty-line
185+
test_i18ngrep "missingEmail" err-with-empty-line
186186
'
187187

188188
test_expect_success 'fsck no garbage output from comments & empty lines errors' '
@@ -196,6 +196,19 @@ test_expect_success 'fsck with invalid abbreviated skipList input' '
196196
test_i18ngrep "^fatal: Invalid SHA-1: " err-abbreviated
197197
'
198198

199+
test_expect_success 'fsck with exhaustive accepted skipList input (various types of comments etc.)' '
200+
>SKIP.exhaustive &&
201+
echo "# A commented line" >>SKIP.exhaustive &&
202+
echo "" >>SKIP.exhaustive &&
203+
echo " " >>SKIP.exhaustive &&
204+
echo " # Comment after whitespace" >>SKIP.exhaustive &&
205+
echo "$commit # Our bad commit (with leading whitespace and trailing comment)" >>SKIP.exhaustive &&
206+
echo "# Some bad commit (leading whitespace)" >>SKIP.exhaustive &&
207+
echo " 0000000000000000000000000000000000000001" >>SKIP.exhaustive &&
208+
git -c fsck.skipList=SKIP.exhaustive fsck 2>err &&
209+
test_must_be_empty err
210+
'
211+
199212
test_expect_success 'push with receive.fsck.skipList' '
200213
git push . $commit:refs/heads/bogus &&
201214
rm -rf dst &&

0 commit comments

Comments
 (0)