]> git.ipfire.org Git - thirdparty/git.git/commitdiff
tests: fix existing tests when add an ignore=all submodule
authorClaus Schneider(Eficode) <claus.schneider@eficode.com>
Wed, 14 Jan 2026 07:47:58 +0000 (07:47 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 14 Jan 2026 14:34:52 +0000 (06:34 -0800)
There are tests that rely on "git add <submodule>" to update the in the
reference in the parent repository which have been updated to use the
--force option.

Updated tests:
- t1013-read-tree-submodule.sh ( fixed in: t/lib-submodule-update.sh )
- t2013-checkout-submodule.sh ( fixed in: t/lib-submodule-update.sh )
- t7406-submodule-update.sh
- t7508-status.sh

Signed-off-by: Claus Schneider (Eficode) <claus.schneider@eficode.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/lib-submodule-update.sh
t/t7508-status.sh

index 36f767cb7488bff81696f985e3614a5fffcda495..f591de6120c3d39f38d1b4f0bd2a0964fb665fb2 100644 (file)
@@ -95,14 +95,14 @@ create_lib_submodule_repo () {
                        git commit -m "modified file2 and added file3" &&
                        git push origin modifications
                ) &&
-               git add sub1 &&
+               git add --force sub1 &&
                git commit -m "Modify sub1" &&
 
                git checkout -b add_nested_sub modify_sub1 &&
                git -C sub1 checkout -b "add_nested_sub" &&
                git -C sub1 submodule add --branch no_submodule ../submodule_update_sub2 sub2 &&
                git -C sub1 commit -a -m "add a nested submodule" &&
-               git add sub1 &&
+               git add --force sub1 &&
                git commit -a -m "update submodule, that updates a nested submodule" &&
                git checkout -b modify_sub1_recursively &&
                git -C sub1 checkout -b modify_sub1_recursively &&
@@ -112,7 +112,7 @@ create_lib_submodule_repo () {
                git -C sub1/sub2 commit -m "make a change in nested sub" &&
                git -C sub1 add sub2 &&
                git -C sub1 commit -m "update nested sub" &&
-               git add sub1 &&
+               git add --force sub1 &&
                git commit -m "update sub1, that updates nested sub" &&
                git -C sub1 push origin modify_sub1_recursively &&
                git -C sub1/sub2 push origin modify_sub1_recursively &&
index abad229e9d9edae744a3c9bbae9d1b2fc0091248..a5e21bf8bffb4512c8d9bb0858b0f94805aecd64 100755 (executable)
@@ -1576,7 +1576,7 @@ test_expect_success 'git commit will commit a staged but ignored submodule' '
 
 test_expect_success 'git commit --dry-run will show a staged but ignored submodule' '
        git reset HEAD^ &&
-       git add sm &&
+       git add --force sm &&
        cat >expect << EOF &&
 On branch main
 Your branch and '\''upstream'\'' have diverged,