On Wed, Feb 23 2022, Derrick Stolee via GitGitGadget wrote: > From: Derrick Stolee <derrickstolee@xxxxxxxxxx> > [...] > + /* Skip if filter does not match. */ > + if (!filter && info->filter_str) > + continue; > + if (filter && > + (!info->filter_str || strcasecmp(filter, info->filter_str))) > + continue; General API comment: Do we have a need for strcasecmp() now anywhere when dealing with filters? $ git clone --no-checkout --filter=BlOb:nOnE https://github.com/git/git fatal: invalid filter-spec 'BlOb:nOnE'