From: Nguyễn Thái Ngọc Duy Date: Sat, 21 Dec 2013 14:00:34 +0000 (-0500) Subject: count-objects: recognize .bitmap in garbage-checking X-Git-Tag: v2.0.0-rc0~148^2~8 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/d3d3e4c490c83daeba61ac1f2be5da2396f7411c?hp=d3d3e4c490c83daeba61ac1f2be5da2396f7411c count-objects: recognize .bitmap in garbage-checking Count-objects will report any "garbage" files in the packs directory, including files whose extensions it does not know (case 1), and files whose matching ".pack" file is missing (case 2). Without having learned about ".bitmap" files, the current code reports all such files as garbage (case 1), even if their pack exists. Instead, they should be treated as case 2. Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Jeff King Signed-off-by: Junio C Hamano ---