]> git.ipfire.org Git - thirdparty/git.git/commitdiff
repack: respect kept objects with '--write-midx -b'
authorDerrick Stolee <dstolee@microsoft.com>
Mon, 20 Dec 2021 14:48:10 +0000 (14:48 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 20 Dec 2021 19:58:31 +0000 (11:58 -0800)
Historically, we needed a single packfile in order to have reachability
bitmaps. This introduced logic that when 'git repack' had a '-b' option
that we should stop sending the '--honor-pack-keep' option to the 'git
pack-objects' child process, ensuring that we create a packfile
containing all reachable objects.

In the world of multi-pack-index bitmaps, we no longer need to repack
all objects into a single pack to have valid bitmaps. Thus, we should
continue sending the '--honor-pack-keep' flag to 'git pack-objects'.

The fix is very simple: only disable the flag when writing bitmaps but
also _not_ writing the multi-pack-index.

This opens the door to new repacking strategies that might want to keep
some historical set of objects in a stable pack-file while only
repacking more recent objects.

To test, create a new 'test_subcommand_inexact' helper that is more
flexible than 'test_subcommand'. This allows us to look for the
--honor-pack-keep flag without over-indexing on the exact set of
arguments.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/repack.c
t/t7700-repack.sh
t/test-lib-functions.sh

index 0b2d1e5d82bedb38570ab056f029bdd3c24e1c5f..3c0346fab526b399763a72a778db5a27cb9e031d 100644 (file)
@@ -691,7 +691,7 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
                write_bitmaps = 0;
        }
        if (pack_kept_objects < 0)
-               pack_kept_objects = write_bitmaps > 0;
+               pack_kept_objects = write_bitmaps > 0 && !write_midx;
 
        if (write_bitmaps && !(pack_everything & ALL_INTO_ONE) && !write_midx)
                die(_(incremental_bitmap_conflict_error));
index 0260ad6f0e06ec3cbd4d6515a4f893e219b42b0a..63c9a247f57f240949b48a802311cfe7ddfc0c21 100755 (executable)
@@ -372,4 +372,10 @@ test_expect_success '--write-midx with preferred bitmap tips' '
        )
 '
 
+test_expect_success '--write-midx -b packs non-kept objects' '
+       GIT_TRACE2_EVENT="$(pwd)/trace.txt" \
+               git repack --write-midx -a -b &&
+       test_subcommand_inexact git pack-objects --honor-pack-keep <trace.txt
+'
+
 test_done
index eef2262a3608aaf44786f0481b1c1739ae17ea6f..5c623f0d5ca16af3f4aa0b3d98f2b87dd0445b0a 100644 (file)
@@ -1748,6 +1748,40 @@ test_subcommand () {
        fi
 }
 
+# Check that the given command was invoked as part of the
+# trace2-format trace on stdin, but without an exact set of
+# arguments.
+#
+#      test_subcommand [!] <command> <args>... < <trace>
+#
+# For example, to look for an invocation of "git pack-objects"
+# with the "--honor-pack-keep" argument, use
+#
+#      GIT_TRACE2_EVENT=event.log git repack ... &&
+#      test_subcommand git pack-objects --honor-pack-keep <event.log
+#
+# If the first parameter passed is !, this instead checks that
+# the given command was not called.
+#
+test_subcommand_inexact () {
+       local negate=
+       if test "$1" = "!"
+       then
+               negate=t
+               shift
+       fi
+
+       local expr=$(printf '"%s".*' "$@")
+       expr="${expr%,}"
+
+       if test -n "$negate"
+       then
+               ! grep "\"event\":\"child_start\".*\[$expr\]"
+       else
+               grep "\"event\":\"child_start\".*\[$expr\]"
+       fi
+}
+
 # Check that the given command was invoked as part of the
 # trace2-format trace on stdin.
 #