On Mon, Jan 07 2019, Barret Rhoden wrote: > +static int handle_ignore_file(const char *path, struct string_list *ignores) > +{ > + FILE *fp = fopen(path, "r"); > + struct strbuf sb = STRBUF_INIT; > + > + if (!fp) > + return -1; > + while (!strbuf_getline(&sb, fp)) { > + const char *hash; > + > + hash = strchr(sb.buf, '#'); > + if (hash) > + strbuf_setlen(&sb, hash - sb.buf); > + strbuf_trim(&sb); > + if (!sb.len) > + continue; > + string_list_append(ignores, sb.buf); > + } > + fclose(fp); > + strbuf_release(&sb); > + return 0; > +} Aside from other comments on this patch that Junio had either you mostly copy-pasted this from init_skiplist() or you've come up with almost the same code on your own. In any case, if we're going to integrate something like this patch let's split this "parse file with SHA-1s or comments/whitespace" into a utility function that both this and init_skiplist() can call. Then we could split up the description for the fsck.skipList config variable to reference that format, and say that both it and this new thing should consult those docs for how it's parsed.