[PATCH 3/3] ref-filter: avoid backend filtering with --ignore-case

2018-07-02 Thread Jeff King
When for-each-ref is used with --ignore-case, we expect match_name_as_path() to do a case-insensitive match. But there's an extra layer of filtering that happens before we even get there. Since commit cfe004a5a9 (ref-filter: limit traversal to prefix, 2017-05-22), we feed the prefix to the ref back

Re: [PATCH 3/3] ref-filter: avoid backend filtering with --ignore-case

2018-07-02 Thread Eric Sunshine
On Mon, Jul 2, 2018 at 5:12 PM Jeff King wrote: > When for-each-ref is used with --ignore-case, we expect > match_name_as_path() to do a case-insensitive match. But > there's an extra layer of filtering that happens before we > even get there. Since commit cfe004a5a9 (ref-filter: limit > traversal