On 10/24/22 2:43 PM, Taylor Blau wrote: > @@ -714,7 +717,12 @@ static int write_cruft_pack(const struct pack_objects_args *args, > if (line.len != the_hash_algo->hexsz) > die(_("repack: Expecting full hex object ID lines only " > "from pack-objects.")); > - string_list_append(names, line.buf); > + /* This line looked oddly out-of-alignment with the next one. It seems that the comment is preceded by spaces and not tabs. Perhaps Junio fixed this during his application of the patch to keep the builds happy. > + * avoid putting packs written outside of the repository in the > + * list of names > + */ > + if (local) > + string_list_append(names, line.buf); LGTM. Thanks, -Stolee