]> git.ipfire.org Git - thirdparty/git.git/commit
rev-list: use bitmap filters for traversal
authorJeff King <peff@peff.net>
Fri, 14 Feb 2020 18:22:32 +0000 (13:22 -0500)
committerJunio C Hamano <gitster@pobox.com>
Fri, 14 Feb 2020 18:46:22 +0000 (10:46 -0800)
commit2aaeb9ac414d75f875efa968480db1ce85dc8dc5
tree022c2722df7069ed5090cf49252d3ef094931b86
parent6663ae0a0818aba5d4de289b1a37e1961ad6c367
rev-list: use bitmap filters for traversal

This just passes the filter-options struct to prepare_bitmap_walk().
Since the bitmap code doesn't actually support any filters yet, it will
fallback to the non-bitmap code if any --filter is specified. But this
lets us exercise that rejection code path, as well as getting us ready
to test filters via rev-list when we _do_ support them.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/rev-list.c