diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-05-07 05:47:40 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-05-07 05:47:41 +0200 |
commit | 8585d6c04aa903526b4b3554e90d6381ec62390a (patch) | |
tree | 46b5e9bc6ee2b452f215febcf9ee0aedad730739 /reachable.c | |
parent | Merge branch 'ab/svn-tests-set-e-fix' (diff) | |
parent | rev-list: allow filtering of provided items (diff) | |
download | git-8585d6c04aa903526b4b3554e90d6381ec62390a.tar.xz git-8585d6c04aa903526b4b3554e90d6381ec62390a.zip |
Merge branch 'ps/rev-list-object-type-filter'
"git rev-list" learns the "--filter=object:type=<type>" option,
which can be used to exclude objects of the given kind from the
packfile generated by pack-objects.
* ps/rev-list-object-type-filter:
rev-list: allow filtering of provided items
pack-bitmap: implement combined filter
pack-bitmap: implement object type filter
list-objects: implement object type filter
list-objects: support filtering by tag and commit
list-objects: move tag processing into its own function
revision: mark commit parents as NOT_USER_GIVEN
uploadpack.txt: document implication of `uploadpackfilter.allow`
Diffstat (limited to 'reachable.c')
-rw-r--r-- | reachable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reachable.c b/reachable.c index a088717eb5..c59847257a 100644 --- a/reachable.c +++ b/reachable.c @@ -223,7 +223,7 @@ void mark_reachable_objects(struct rev_info *revs, int mark_reflog, cp.progress = progress; cp.count = 0; - bitmap_git = prepare_bitmap_walk(revs, NULL); + bitmap_git = prepare_bitmap_walk(revs, NULL, 0); if (bitmap_git) { traverse_bitmap_commit_list(bitmap_git, revs, mark_object_seen); free_bitmap_index(bitmap_git); |