]> git.ipfire.org Git - thirdparty/git.git/commitdiff
bundle: lost objects when removing duplicate pendings
authorJiang Xin <zhiyou.jx@alibaba-inc.com>
Tue, 12 Jan 2021 02:27:02 +0000 (21:27 -0500)
committerJunio C Hamano <gitster@pobox.com>
Tue, 12 Jan 2021 05:50:41 +0000 (21:50 -0800)
`git rev-list` will list one commit for the following command:

    $ git rev-list 'main^!'
    <tip-commit-of-main-branch>

But providing the same rev-list args to `git bundle`, fail to create
a bundle file.

    $ git bundle create - 'main^!'
    # v2 git bundle
    -<OID> <one-line-message>

    fatal: Refusing to create empty bundle.

This is because when removing duplicate objects in function
`object_array_remove_duplicates()`, one unique pending object which has
the same name is deleted by mistake.  The revision arg 'main^!' in the
above example is parsed by `handle_revision_arg()`, and at lease two
different objects will be appended to `revs.pending`, one points to the
parent commit of the "main" branch, and the other points to the tip
commit of the "main" branch.  These two objects have the same name
"main".  Only one object is left with the name "main" after calling the
function `object_array_remove_duplicates()`.

And what's worse, when adding boundary commits into pending list, we use
one-line commit message as names, and the arbitory names may surprise
git-bundle.

Only comparing objects themselves (".item") is also not good enough,
because user may want to create a bundle with two identical objects but
with different reference names, such as: "HEAD" and "refs/heads/main".

Add new function `contains_object()` which compare both the address and
the name of the object.

Signed-off-by: Jiang Xin <zhiyou.jx@alibaba-inc.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
object.c
t/t6020-bundle-misc.sh

index 68f80b0b3d83e09f46bf3875c45647cee79772e8..98017bed8efb7eaf45d30a20c07a0870c4acceaa 100644 (file)
--- a/object.c
+++ b/object.c
@@ -412,15 +412,16 @@ void object_array_clear(struct object_array *array)
 }
 
 /*
- * Return true iff array already contains an entry with name.
+ * Return true if array already contains an entry.
  */
-static int contains_name(struct object_array *array, const char *name)
+static int contains_object(struct object_array *array,
+                          const struct object *item, const char *name)
 {
        unsigned nr = array->nr, i;
        struct object_array_entry *object = array->objects;
 
        for (i = 0; i < nr; i++, object++)
-               if (!strcmp(object->name, name))
+               if (item == object->item && !strcmp(object->name, name))
                        return 1;
        return 0;
 }
@@ -432,7 +433,8 @@ void object_array_remove_duplicates(struct object_array *array)
 
        array->nr = 0;
        for (src = 0; src < nr; src++) {
-               if (!contains_name(array, objects[src].name)) {
+               if (!contains_object(array, objects[src].item,
+                                    objects[src].name)) {
                        if (src != array->nr)
                                objects[array->nr] = objects[src];
                        array->nr++;
index 201f34b5c3b2c004af20714aeb1b4fc4528e9a62..b554538e00253c026268708cbfc51d7880f3cbc2 100755 (executable)
@@ -167,7 +167,7 @@ test_expect_success 'setup' '
        test_commit_setvar P "Commit P" main.txt
 '
 
-test_expect_failure 'create bundle from special rev: main^!' '
+test_expect_success 'create bundle from special rev: main^!' '
        git bundle create special-rev.bdl "main^!" &&
 
        git bundle list-heads special-rev.bdl |