3 # Copyright (c) 2007 Lars Hjemli
6 test_description
='Basic porcelain support for submodules
8 This test tries to verify basic sanity of the init, update and status
9 subcommands of git submodule.
12 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
=main
13 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
17 test_expect_success
'setup - enable local submodules' '
18 git config --global protocol.file.allow always
21 test_expect_success
'submodule usage: -h' '
22 git submodule -h >out 2>err &&
23 grep "^usage: git submodule" out &&
24 test_must_be_empty err
27 test_expect_success
'submodule usage: --recursive' '
28 test_expect_code 1 git submodule --recursive >out 2>err &&
29 grep "^usage: git submodule" err &&
30 test_must_be_empty out
33 test_expect_success
'submodule usage: status --' '
34 test_expect_code 1 git submodule -- &&
35 test_expect_code 1 git submodule --end-of-options
38 for opt
in '--quiet' '--cached'
40 test_expect_success
"submodule usage: status $opt" '
42 git submodule status $opt &&
43 git submodule $opt status
47 test_expect_success
'submodule deinit works on empty repository' '
48 git submodule deinit --all
51 test_expect_success
'setup - initial commit' '
54 git commit -m "initial commit" &&
58 test_expect_success
'submodule init aborts on missing .gitmodules file' '
59 test_when_finished "git update-index --remove sub" &&
60 git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub &&
61 # missing the .gitmodules file here
62 test_must_fail git submodule init 2>actual &&
63 test_i18ngrep "No url found for submodule path" actual
66 test_expect_success
'submodule update aborts on missing .gitmodules file' '
67 test_when_finished "git update-index --remove sub" &&
68 git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub &&
69 # missing the .gitmodules file here
70 git submodule update sub 2>actual &&
71 test_i18ngrep "Submodule path .sub. not initialized" actual
74 test_expect_success
'submodule update aborts on missing gitmodules url' '
75 test_when_finished "git update-index --remove sub" &&
76 git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub &&
77 test_when_finished "rm -f .gitmodules" &&
78 git config -f .gitmodules submodule.s.path sub &&
79 test_must_fail git submodule init
82 test_expect_success
'add aborts on repository with no commits' '
83 cat >expect <<-\EOF &&
84 fatal: '"'repo-no-commits'"' does not have a commit checked out
86 git init repo-no-commits &&
87 test_must_fail git submodule add ../a ./repo-no-commits 2>actual &&
88 test_cmp expect actual
91 test_expect_success
'status should ignore inner git repo when not added' '
99 git commit -m "initial"
101 test_must_fail git submodule status inner 2>output.err &&
103 test_i18ngrep "^error: .*did not match any file(s) known to git" output.err
106 test_expect_success
'setup - repository in init subdirectory' '
113 git commit -m "submodule commit 1" &&
114 git tag -a -m "rev-1" rev-1
118 test_expect_success
'setup - commit with gitlink' '
122 git commit -m "super commit 1"
125 test_expect_success
'setup - hide init subdirectory' '
129 test_expect_success
'setup - repository to add submodules to' '
131 git init addtest-ignore
134 # The 'submodule add' tests need some repository to add as a submodule.
135 # The trash directory is a good one as any. We need to canonicalize
136 # the name, though, as some tests compare it to the absolute path git
137 # generates, which will expand symbolic links.
141 git for-each-ref
--format='%(refname)' 'refs/heads/*'
150 listbranches
>"$dotdot/heads" &&
151 { git symbolic-ref HEAD ||
:; } >"$dotdot/head" &&
152 git rev-parse HEAD
>"$dotdot/head-sha1" &&
153 git update-index
--refresh &&
154 git diff-files
--exit-code &&
155 git clean
-n -d -x >"$dotdot/untracked"
159 test_expect_success
'submodule add' '
160 echo "refs/heads/main" >expect &&
164 git submodule add -q "$submodurl" submod >actual &&
165 test_must_be_empty actual &&
166 echo "gitdir: ../.git/modules/submod" >expect &&
167 test_cmp expect submod/.git &&
170 git config core.worktree >actual &&
171 echo "../../../submod" >expect &&
172 test_cmp expect actual &&
178 rm -f heads head untracked &&
179 inspect addtest/submod ../.. &&
180 test_cmp expect heads &&
181 test_cmp expect head &&
182 test_must_be_empty untracked
185 test_expect_success
!WINDOWS
'submodule add (absolute path)' '
186 test_when_finished "git reset --hard" &&
187 git submodule add "$submodurl" "$submodurl/add-abs"
190 test_expect_success
'setup parent and one repository' '
191 test_create_repo parent &&
192 test_commit -C parent one
195 test_expect_success
'redirected submodule add does not show progress' '
196 git -C addtest submodule add "file://$submodurl/parent" submod-redirected \
199 test_i18ngrep ! "Checking connectivity" err
202 test_expect_success
'redirected submodule add --progress does show progress' '
203 git -C addtest submodule add --progress "file://$submodurl/parent" \
204 submod-redirected-progress 2>err && \
208 test_expect_success
'submodule add to .gitignored path fails' '
211 cat <<-\EOF >expect &&
212 The following paths are ignored by one of your .gitignore files:
214 hint: Use -f if you really want to add them.
215 hint: Turn this message off by running
216 hint: "git config advice.addIgnoredFile false"
218 # Does not use test_commit due to the ignore
219 echo "*" > .gitignore &&
220 git add --force .gitignore &&
221 git commit -m"Ignore everything" &&
222 ! git submodule add "$submodurl" submod >actual 2>&1 &&
223 test_cmp expect actual
227 test_expect_success
'submodule add to .gitignored path with --force' '
230 git submodule add --force "$submodurl" submod
234 test_expect_success
'submodule add to path with tracked content fails' '
237 echo "fatal: '\''dir-tracked'\'' already exists in the index" >expect &&
239 test_commit foo dir-tracked/bar &&
240 test_must_fail git submodule add "$submodurl" dir-tracked >actual 2>&1 &&
241 test_cmp expect actual
245 test_expect_success
'submodule add to reconfigure existing submodule with --force' '
248 bogus_url="$(pwd)/bogus-url" &&
249 git submodule add --force "$bogus_url" submod &&
250 git submodule add --force -b initial "$submodurl" submod-branch &&
251 test "$bogus_url" = "$(git config -f .gitmodules submodule.submod.url)" &&
252 test "$bogus_url" = "$(git config submodule.submod.url)" &&
254 git submodule add --force "$submodurl" submod &&
255 test "$submodurl" = "$(git config -f .gitmodules submodule.submod.url)" &&
256 test "$submodurl" = "$(git config submodule.submod.url)"
260 test_expect_success
'submodule add relays add --dry-run stderr' '
261 test_when_finished "rm -rf addtest/.git/index.lock" &&
264 : >.git/index.lock &&
265 ! git submodule add "$submodurl" sub-while-locked 2>output.err &&
266 test_i18ngrep "^fatal: .*index\.lock" output.err &&
267 test_path_is_missing sub-while-locked
271 test_expect_success
'submodule add --branch' '
272 echo "refs/heads/initial" >expect-head &&
273 cat <<-\EOF >expect-heads &&
280 git submodule add -b initial "$submodurl" submod-branch &&
281 test "initial" = "$(git config -f .gitmodules submodule.submod-branch.branch)" &&
285 rm -f heads head untracked &&
286 inspect addtest/submod-branch ../.. &&
287 test_cmp expect-heads heads &&
288 test_cmp expect-head head &&
289 test_must_be_empty untracked
292 test_expect_success
'submodule add with ./ in path' '
293 echo "refs/heads/main" >expect &&
297 git submodule add "$submodurl" ././dotsubmod/./frotz/./ &&
301 rm -f heads head untracked &&
302 inspect addtest/dotsubmod/frotz ../../.. &&
303 test_cmp expect heads &&
304 test_cmp expect head &&
305 test_must_be_empty untracked
308 test_expect_success
'submodule add with /././ in path' '
309 echo "refs/heads/main" >expect &&
313 git submodule add "$submodurl" dotslashdotsubmod/././frotz/./ &&
317 rm -f heads head untracked &&
318 inspect addtest/dotslashdotsubmod/frotz ../../.. &&
319 test_cmp expect heads &&
320 test_cmp expect head &&
321 test_must_be_empty untracked
324 test_expect_success
'submodule add with // in path' '
325 echo "refs/heads/main" >expect &&
329 git submodule add "$submodurl" slashslashsubmod///frotz// &&
333 rm -f heads head untracked &&
334 inspect addtest/slashslashsubmod/frotz ../../.. &&
335 test_cmp expect heads &&
336 test_cmp expect head &&
337 test_must_be_empty untracked
340 test_expect_success
'submodule add with /.. in path' '
341 echo "refs/heads/main" >expect &&
345 git submodule add "$submodurl" dotdotsubmod/../realsubmod/frotz/.. &&
349 rm -f heads head untracked &&
350 inspect addtest/realsubmod ../.. &&
351 test_cmp expect heads &&
352 test_cmp expect head &&
353 test_must_be_empty untracked
356 test_expect_success
'submodule add with ./, /.. and // in path' '
357 echo "refs/heads/main" >expect &&
361 git submodule add "$submodurl" dot/dotslashsubmod/./../..////realsubmod2/a/b/c/d/../../../../frotz//.. &&
365 rm -f heads head untracked &&
366 inspect addtest/realsubmod2 ../.. &&
367 test_cmp expect heads &&
368 test_cmp expect head &&
369 test_must_be_empty untracked
372 test_expect_success
!CYGWIN
'submodule add with \\ in path' '
373 test_when_finished "rm -rf parent sub\\with\\backslash" &&
375 # Initialize a repo with a backslash in its name
376 git init sub\\with\\backslash &&
377 touch sub\\with\\backslash/empty.file &&
378 git -C sub\\with\\backslash add empty.file &&
379 git -C sub\\with\\backslash commit -m "Added empty.file" &&
381 # Add that repository as a submodule
383 git -C parent submodule add ../sub\\with\\backslash
386 test_expect_success
'submodule add in subdirectory' '
387 echo "refs/heads/main" >expect &&
392 git submodule add "$submodurl" ../realsubmod3 &&
396 rm -f heads head untracked &&
397 inspect addtest/realsubmod3 ../.. &&
398 test_cmp expect heads &&
399 test_cmp expect head &&
400 test_must_be_empty untracked
403 test_expect_success
'submodule add in subdirectory with relative path should fail' '
406 test_must_fail git submodule add ../../ submod3 2>../../output.err
408 test_i18ngrep toplevel output.err
411 test_expect_success
'setup - add an example entry to .gitmodules' '
412 git config --file=.gitmodules submodule.example.url git://example.com/init.git
415 test_expect_success
'status should fail for unmapped paths' '
416 test_must_fail git submodule status
419 test_expect_success
'setup - map path in .gitmodules' '
420 cat <<\EOF >expect &&
421 [submodule "example"]
422 url = git://example.com/init.git
426 git config --file=.gitmodules submodule.example.path init &&
428 test_cmp expect .gitmodules
431 test_expect_success
'status should only print one line' '
432 git submodule status >lines &&
433 test_line_count = 1 lines
436 test_expect_success
'status from subdirectory should have the same SHA1' '
437 test_when_finished "rmdir addtest/subdir" &&
441 git submodule status >output &&
442 awk "{print \$1}" <output >expect &&
444 git submodule status >../output &&
445 awk "{print \$1}" <../output >../actual &&
446 test_cmp ../expect ../actual &&
447 git -C ../submod checkout HEAD^ &&
448 git submodule status >../output &&
449 awk "{print \$1}" <../output >../actual2 &&
451 git submodule status >output &&
452 awk "{print \$1}" <output >expect2 &&
453 test_cmp expect2 actual2 &&
454 ! test_cmp actual actual2
458 test_expect_success
'setup - fetch commit name from submodule' '
459 rev1=$(cd .subrepo && git rev-parse HEAD) &&
460 printf "rev1: %s\n" "$rev1" &&
464 test_expect_success
'status should initially be "missing"' '
465 git submodule status >lines &&
469 test_expect_success
'init should register submodule url in .git/config' '
470 echo git://example.com/init.git >expect &&
472 git submodule init &&
473 git config submodule.example.url >url &&
474 git config submodule.example.url ./.subrepo &&
479 test_expect_success
'status should still be "missing" after initializing' '
482 git submodule status >lines &&
487 test_failure_with_unknown_submodule
() {
488 test_must_fail git submodule
$1 no-such-submodule
2>output.err
&&
489 test_i18ngrep
"^error: .*no-such-submodule" output.err
492 test_expect_success
'init should fail with unknown submodule' '
493 test_failure_with_unknown_submodule init
496 test_expect_success
'update should fail with unknown submodule' '
497 test_failure_with_unknown_submodule update
500 test_expect_success
'status should fail with unknown submodule' '
501 test_failure_with_unknown_submodule status
504 test_expect_success
'sync should fail with unknown submodule' '
505 test_failure_with_unknown_submodule sync
508 test_expect_success
'update should fail when path is used by a file' '
509 echo hello >expect &&
511 echo "hello" >init &&
512 test_must_fail git submodule update &&
517 test_expect_success
'update should fail when path is used by a nonempty directory' '
518 echo hello >expect &&
522 echo "hello" >init/a &&
524 test_must_fail git submodule update &&
526 test_cmp expect init/a
529 test_expect_success
'update should work when path is an empty dir' '
532 echo "$rev1" >expect &&
535 git submodule update -q >update.out &&
536 test_must_be_empty update.out &&
539 test_cmp expect head-sha1
542 test_expect_success
'status should be "up-to-date" after update' '
543 git submodule status >list &&
547 test_expect_success
'status "up-to-date" from subdirectory' '
551 git submodule status >../list
553 grep "^ $rev1" list &&
554 grep "\\.\\./init" list
557 test_expect_success
'status "up-to-date" from subdirectory with path' '
561 git submodule status ../init >../list
563 grep "^ $rev1" list &&
564 grep "\\.\\./init" list
567 test_expect_success
'status should be "modified" after submodule commit' '
572 git commit -m "submodule commit 2"
575 rev2=$(cd init && git rev-parse HEAD) &&
577 git submodule status >list &&
582 test_expect_success
'"submodule --cached" command forms should be identical' '
583 git submodule status --cached >expect &&
585 git submodule --cached >actual &&
586 test_cmp expect actual &&
588 git submodule --cached status >actual &&
589 test_cmp expect actual
592 test_expect_success
'the --cached sha1 should be rev1' '
593 git submodule --cached status >list &&
597 test_expect_success
'git diff should report the SHA1 of the new submodule commit' '
599 grep "^+Subproject commit $rev2" diff
602 test_expect_success
'update should checkout rev1' '
604 echo "$rev1" >expect &&
606 git submodule update init &&
609 test_cmp expect head-sha1
612 test_expect_success
'status should be "up-to-date" after update' '
613 git submodule status >list &&
617 test_expect_success
'checkout superproject with subproject already present' '
618 git checkout initial &&
622 test_expect_success
'apply submodule diff' '
628 git commit -m "change subproject"
630 git update-index --add init &&
631 git commit -m "change init" &&
632 git format-patch -1 --stdout >P.diff &&
633 git checkout second &&
634 git apply --index P.diff &&
636 git diff --cached main >staged &&
637 test_must_be_empty staged
640 test_expect_success
'update --init' '
642 git config -f .gitmodules submodule.example.url "$(pwd)/init2" &&
643 git config --remove-section submodule.example &&
644 test_must_fail git config submodule.example.url &&
646 git submodule update init 2> update.out &&
647 test_i18ngrep "not initialized" update.out &&
648 test_must_fail git rev-parse --resolve-git-dir init/.git &&
650 git submodule update --init init &&
651 git rev-parse --resolve-git-dir init/.git
654 test_expect_success
'update --init from subdirectory' '
656 git config -f .gitmodules submodule.example.url "$(pwd)/init2" &&
657 git config --remove-section submodule.example &&
658 test_must_fail git config submodule.example.url &&
663 git submodule update ../init 2>update.out &&
664 test_i18ngrep "not initialized" update.out &&
665 test_must_fail git rev-parse --resolve-git-dir ../init/.git &&
667 git submodule update --init ../init
669 git rev-parse --resolve-git-dir init/.git
672 test_expect_success
'do not add files from a submodule' '
675 test_must_fail git add init/a
679 test_expect_success
'gracefully add/reset submodule with a trailing slash' '
682 git commit -m "commit subproject" init &&
686 git diff --exit-code --cached init &&
688 git commit -m update a >/dev/null &&
689 git rev-parse HEAD) &&
691 test_must_fail git diff --exit-code --cached init &&
692 test $commit = $(git ls-files --stage |
693 sed -n "s/^160000 \([^ ]*\).*/\1/p") &&
695 git diff --exit-code --cached init
699 test_expect_success
'ls-files gracefully handles trailing slash' '
701 test "init" = "$(git ls-files init/)"
705 test_expect_success
'moving to a commit without submodule does not leave empty dir' '
709 git checkout initial &&
714 test_expect_success
'submodule <invalid-subcommand> fails' '
715 test_must_fail git submodule no-such-subcommand
718 test_expect_success
'add submodules without specifying an explicit path' '
725 git commit -m "repo commit 1"
727 git clone --bare repo/ bare.git &&
730 git submodule add "$submodurl/repo" &&
731 git config -f .gitmodules submodule.repo.path repo &&
732 git submodule add "$submodurl/bare.git" &&
733 git config -f .gitmodules submodule.bare.path bare
737 test_expect_success
'add should fail when path is used by a file' '
741 test_must_fail git submodule add "$submodurl/repo" file
745 test_expect_success
'add should fail when path is used by an existing directory' '
749 test_must_fail git submodule add "$submodurl/repo" empty-dir
753 test_expect_success
'use superproject as upstream when path is relative and no url is set there' '
756 git submodule add ../repo relative &&
757 test "$(git config -f .gitmodules submodule.relative.url)" = ../repo &&
758 git submodule sync relative &&
759 test "$(git config submodule.relative.url)" = "$submodurl/repo"
763 test_expect_success
'set up for relative path tests' '
775 git config -f .gitmodules submodule.sub.path sub &&
776 git config -f .gitmodules submodule.sub.url ../subrepo &&
777 cp .git/config pristine-.git-config &&
778 cp .gitmodules pristine-.gitmodules
782 test_expect_success
'../subrepo works with URL - ssh://hostname/repo' '
785 cp pristine-.git-config .git/config &&
786 cp pristine-.gitmodules .gitmodules &&
787 git config remote.origin.url ssh://hostname/repo &&
788 git submodule init &&
789 test "$(git config submodule.sub.url)" = ssh://hostname/subrepo
793 test_expect_success
'../subrepo works with port-qualified URL - ssh://hostname:22/repo' '
796 cp pristine-.git-config .git/config &&
797 cp pristine-.gitmodules .gitmodules &&
798 git config remote.origin.url ssh://hostname:22/repo &&
799 git submodule init &&
800 test "$(git config submodule.sub.url)" = ssh://hostname:22/subrepo
804 # About the choice of the path in the next test:
805 # - double-slash side-steps path mangling issues on Windows
806 # - it is still an absolute local path
807 # - there cannot be a server with a blank in its name just in case the
808 # path is used erroneously to access a //server/share style path
809 test_expect_success
'../subrepo path works with local path - //somewhere else/repo' '
812 cp pristine-.git-config .git/config &&
813 cp pristine-.gitmodules .gitmodules &&
814 git config remote.origin.url "//somewhere else/repo" &&
815 git submodule init &&
816 test "$(git config submodule.sub.url)" = "//somewhere else/subrepo"
820 test_expect_success
'../subrepo works with file URL - file:///tmp/repo' '
823 cp pristine-.git-config .git/config &&
824 cp pristine-.gitmodules .gitmodules &&
825 git config remote.origin.url file:///tmp/repo &&
826 git submodule init &&
827 test "$(git config submodule.sub.url)" = file:///tmp/subrepo
831 test_expect_success
'../subrepo works with helper URL- helper:://hostname/repo' '
834 cp pristine-.git-config .git/config &&
835 cp pristine-.gitmodules .gitmodules &&
836 git config remote.origin.url helper:://hostname/repo &&
837 git submodule init &&
838 test "$(git config submodule.sub.url)" = helper:://hostname/subrepo
842 test_expect_success
'../subrepo works with scp-style URL - user@host:repo' '
845 cp pristine-.git-config .git/config &&
846 git config remote.origin.url user@host:repo &&
847 git submodule init &&
848 test "$(git config submodule.sub.url)" = user@host:subrepo
852 test_expect_success
'../subrepo works with scp-style URL - user@host:path/to/repo' '
855 cp pristine-.git-config .git/config &&
856 cp pristine-.gitmodules .gitmodules &&
857 git config remote.origin.url user@host:path/to/repo &&
858 git submodule init &&
859 test "$(git config submodule.sub.url)" = user@host:path/to/subrepo
863 test_expect_success
'../subrepo works with relative local path - foo' '
866 cp pristine-.git-config .git/config &&
867 cp pristine-.gitmodules .gitmodules &&
868 git config remote.origin.url foo &&
869 # actual: fails with an error
870 git submodule init &&
871 test "$(git config submodule.sub.url)" = subrepo
875 test_expect_success
'../subrepo works with relative local path - foo/bar' '
878 cp pristine-.git-config .git/config &&
879 cp pristine-.gitmodules .gitmodules &&
880 git config remote.origin.url foo/bar &&
881 git submodule init &&
882 test "$(git config submodule.sub.url)" = foo/subrepo
886 test_expect_success
'../subrepo works with relative local path - ./foo' '
889 cp pristine-.git-config .git/config &&
890 cp pristine-.gitmodules .gitmodules &&
891 git config remote.origin.url ./foo &&
892 git submodule init &&
893 test "$(git config submodule.sub.url)" = subrepo
897 test_expect_success
'../subrepo works with relative local path - ./foo/bar' '
900 cp pristine-.git-config .git/config &&
901 cp pristine-.gitmodules .gitmodules &&
902 git config remote.origin.url ./foo/bar &&
903 git submodule init &&
904 test "$(git config submodule.sub.url)" = foo/subrepo
908 test_expect_success
'../subrepo works with relative local path - ../foo' '
911 cp pristine-.git-config .git/config &&
912 cp pristine-.gitmodules .gitmodules &&
913 git config remote.origin.url ../foo &&
914 git submodule init &&
915 test "$(git config submodule.sub.url)" = ../subrepo
919 test_expect_success
'../subrepo works with relative local path - ../foo/bar' '
922 cp pristine-.git-config .git/config &&
923 cp pristine-.gitmodules .gitmodules &&
924 git config remote.origin.url ../foo/bar &&
925 git submodule init &&
926 test "$(git config submodule.sub.url)" = ../foo/subrepo
930 test_expect_success
'../bar/a/b/c works with relative local path - ../foo/bar.git' '
933 cp pristine-.git-config .git/config &&
934 cp pristine-.gitmodules .gitmodules &&
936 (cd a/b/c && git init && test_commit msg) &&
937 git config remote.origin.url ../foo/bar.git &&
938 git submodule add ../bar/a/b/c ./a/b/c &&
939 git submodule init &&
940 test "$(git config submodule.a/b/c.url)" = ../foo/bar/a/b/c
944 test_expect_success
'moving the superproject does not break submodules' '
947 git submodule status >expect
949 mv addtest addtest2 &&
952 git submodule status >actual &&
953 test_cmp expect actual
957 test_expect_success
'moving the submodule does not break the superproject' '
962 sed -e "s/^ \([^ ]* repo\) .*/-\1/" <actual >expect &&
963 mv addtest2/repo addtest2/repo.bak &&
964 test_when_finished "mv addtest2/repo.bak addtest2/repo" &&
969 test_cmp expect actual
972 test_expect_success
'submodule add --name allows to replace a submodule with another at the same path' '
977 echo "$submodurl/repo" >expect &&
978 git config remote.origin.url >actual &&
979 test_cmp expect actual &&
980 echo "gitdir: ../.git/modules/repo" >expect &&
985 git submodule add -q --name repo_new "$submodurl/bare.git" repo >actual &&
986 test_must_be_empty actual &&
987 echo "gitdir: ../.git/modules/submod" >expect &&
988 test_cmp expect submod/.git &&
991 echo "$submodurl/bare.git" >expect &&
992 git config remote.origin.url >actual &&
993 test_cmp expect actual &&
994 echo "gitdir: ../.git/modules/repo_new" >expect &&
997 echo "repo" >expect &&
998 test_must_fail git config -f .gitmodules submodule.repo.path &&
999 git config -f .gitmodules submodule.repo_new.path >actual &&
1000 test_cmp expect actual &&
1001 echo "$submodurl/repo" >expect &&
1002 test_must_fail git config -f .gitmodules submodule.repo.url &&
1003 echo "$submodurl/bare.git" >expect &&
1004 git config -f .gitmodules submodule.repo_new.url >actual &&
1005 test_cmp expect actual &&
1006 echo "$submodurl/repo" >expect &&
1007 git config submodule.repo.url >actual &&
1008 test_cmp expect actual &&
1009 echo "$submodurl/bare.git" >expect &&
1010 git config submodule.repo_new.url >actual &&
1011 test_cmp expect actual
1015 test_expect_success
'recursive relative submodules stay relative' '
1016 test_when_finished "rm -rf super clone2 subsub sub3" &&
1023 git commit -m "initial commit"
1031 git commit -m "initial commit" &&
1032 git submodule add ../subsub dirdir/subsub &&
1033 git commit -m "add submodule subsub"
1041 git commit -m "initial commit" &&
1042 git submodule add ../sub3 &&
1043 git commit -m "add submodule sub"
1045 git clone super clone2 &&
1048 git submodule update --init --recursive &&
1049 echo "gitdir: ../.git/modules/sub3" >./sub3/.git_expect &&
1050 echo "gitdir: ../../../.git/modules/sub3/modules/dirdir/subsub" >./sub3/dirdir/subsub/.git_expect
1052 test_cmp clone2/sub3/.git_expect clone2/sub3/.git &&
1053 test_cmp clone2/sub3/dirdir/subsub/.git_expect clone2/sub3/dirdir/subsub/.git
1056 test_expect_success
'submodule add with an existing name fails unless forced' '
1061 test_must_fail git submodule add -q --name repo_new "$submodurl/repo.git" repo &&
1063 test_must_fail git config -f .gitmodules submodule.repo_new.path &&
1064 test_must_fail git config -f .gitmodules submodule.repo_new.url &&
1065 echo "$submodurl/bare.git" >expect &&
1066 git config submodule.repo_new.url >actual &&
1067 test_cmp expect actual &&
1068 git submodule add -f -q --name repo_new "$submodurl/repo.git" repo &&
1070 echo "repo" >expect &&
1071 git config -f .gitmodules submodule.repo_new.path >actual &&
1072 test_cmp expect actual &&
1073 echo "$submodurl/repo.git" >expect &&
1074 git config -f .gitmodules submodule.repo_new.url >actual &&
1075 test_cmp expect actual &&
1076 echo "$submodurl/repo.git" >expect &&
1077 git config submodule.repo_new.url >actual &&
1078 test_cmp expect actual
1082 test_expect_success
'set up a second submodule' '
1083 git submodule add ./init2 example2 &&
1084 git commit -m "submodule example2 added"
1087 test_expect_success
'submodule deinit works on repository without submodules' '
1088 test_when_finished "rm -rf newdirectory" &&
1089 mkdir newdirectory &&
1095 git commit -m "repo should not be empty" &&
1096 git submodule deinit . &&
1097 git submodule deinit --all
1101 test_expect_success
'submodule deinit should remove the whole submodule section from .git/config' '
1102 git config submodule.example.foo bar &&
1103 git config submodule.example2.frotz nitfol &&
1104 git submodule deinit init &&
1105 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1106 test -n "$(git config --get-regexp "submodule\.example2\.")" &&
1107 test -f example2/.git &&
1111 test_expect_success
'submodule deinit should unset core.worktree' '
1112 test_path_is_file .git/modules/example/config &&
1113 test_must_fail git config -f .git/modules/example/config core.worktree
1116 test_expect_success
'submodule deinit from subdirectory' '
1117 git submodule update --init &&
1118 git config submodule.example.foo bar &&
1122 git submodule deinit ../init >../output
1124 test_i18ngrep "\\.\\./init" output &&
1125 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1126 test -n "$(git config --get-regexp "submodule\.example2\.")" &&
1127 test -f example2/.git &&
1131 test_expect_success
'submodule deinit . deinits all initialized submodules' '
1132 git submodule update --init &&
1133 git config submodule.example.foo bar &&
1134 git config submodule.example2.frotz nitfol &&
1135 test_must_fail git submodule deinit &&
1136 git submodule deinit . >actual &&
1137 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1138 test -z "$(git config --get-regexp "submodule\.example2\.")" &&
1139 test_i18ngrep "Cleared directory .init" actual &&
1140 test_i18ngrep "Cleared directory .example2" actual &&
1144 test_expect_success
'submodule deinit --all deinits all initialized submodules' '
1145 git submodule update --init &&
1146 git config submodule.example.foo bar &&
1147 git config submodule.example2.frotz nitfol &&
1148 test_must_fail git submodule deinit &&
1149 git submodule deinit --all >actual &&
1150 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1151 test -z "$(git config --get-regexp "submodule\.example2\.")" &&
1152 test_i18ngrep "Cleared directory .init" actual &&
1153 test_i18ngrep "Cleared directory .example2" actual &&
1157 test_expect_success
'submodule deinit deinits a submodule when its work tree is missing or empty' '
1158 git submodule update --init &&
1159 rm -rf init example2/* example2/.git &&
1160 git submodule deinit init example2 >actual &&
1161 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1162 test -z "$(git config --get-regexp "submodule\.example2\.")" &&
1163 test_i18ngrep ! "Cleared directory .init" actual &&
1164 test_i18ngrep "Cleared directory .example2" actual &&
1168 test_expect_success
'submodule deinit fails when the submodule contains modifications unless forced' '
1169 git submodule update --init &&
1171 test_must_fail git submodule deinit init &&
1172 test -n "$(git config --get-regexp "submodule\.example\.")" &&
1173 test -f example2/.git &&
1174 git submodule deinit -f init >actual &&
1175 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1176 test_i18ngrep "Cleared directory .init" actual &&
1180 test_expect_success
'submodule deinit fails when the submodule contains untracked files unless forced' '
1181 git submodule update --init &&
1182 echo X >>init/untracked &&
1183 test_must_fail git submodule deinit init &&
1184 test -n "$(git config --get-regexp "submodule\.example\.")" &&
1185 test -f example2/.git &&
1186 git submodule deinit -f init >actual &&
1187 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1188 test_i18ngrep "Cleared directory .init" actual &&
1192 test_expect_success
'submodule deinit fails when the submodule HEAD does not match unless forced' '
1193 git submodule update --init &&
1198 test_must_fail git submodule deinit init &&
1199 test -n "$(git config --get-regexp "submodule\.example\.")" &&
1200 test -f example2/.git &&
1201 git submodule deinit -f init >actual &&
1202 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1203 test_i18ngrep "Cleared directory .init" actual &&
1207 test_expect_success
'submodule deinit is silent when used on an uninitialized submodule' '
1208 git submodule update --init &&
1209 git submodule deinit init >actual &&
1210 test_i18ngrep "Submodule .example. (.*) unregistered for path .init" actual &&
1211 test_i18ngrep "Cleared directory .init" actual &&
1212 git submodule deinit init >actual &&
1213 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1214 test_i18ngrep "Cleared directory .init" actual &&
1215 git submodule deinit . >actual &&
1216 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1217 test_i18ngrep "Submodule .example2. (.*) unregistered for path .example2" actual &&
1218 test_i18ngrep "Cleared directory .init" actual &&
1219 git submodule deinit . >actual &&
1220 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1221 test_i18ngrep ! "Submodule .example2. (.*) unregistered for path .example2" actual &&
1222 test_i18ngrep "Cleared directory .init" actual &&
1223 git submodule deinit --all >actual &&
1224 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1225 test_i18ngrep ! "Submodule .example2. (.*) unregistered for path .example2" actual &&
1226 test_i18ngrep "Cleared directory .init" actual &&
1230 test_expect_success
'submodule deinit absorbs .git directory if .git is a directory' '
1231 git submodule update --init &&
1235 mv ../.git/modules/example .git &&
1236 GIT_WORK_TREE=. git config --unset core.worktree
1238 git submodule deinit init &&
1239 test_path_is_missing init/.git &&
1240 test -z "$(git config --get-regexp "submodule\.example\.")"
1243 test_expect_success
'submodule with UTF-8 name' '
1244 svname=$(printf "\303\245 \303\244\303\266") &&
1251 git commit -m "init sub"
1253 git submodule add ./"$svname" &&
1254 git submodule >&2 &&
1255 test -n "$(git submodule | grep "$svname")"
1258 test_expect_success
'submodule add clone shallow submodule' '
1264 git submodule add --depth=1 file://"$pwd"/example2 submodule &&
1267 test 1 = $(git log --oneline | wc -l)
1272 test_expect_success
'setup superproject with submodules' '
1274 test_commit -C sub1 test &&
1275 test_commit -C sub1 test2 &&
1276 git init multisuper &&
1277 git -C multisuper submodule add ../sub1 sub0 &&
1278 git -C multisuper submodule add ../sub1 sub1 &&
1279 git -C multisuper submodule add ../sub1 sub2 &&
1280 git -C multisuper submodule add ../sub1 sub3 &&
1281 git -C multisuper commit -m "add some submodules"
1291 test_expect_success
'submodule update --init with a specification' '
1292 test_when_finished "rm -rf multisuper_clone" &&
1294 git clone file://"$pwd"/multisuper multisuper_clone &&
1295 git -C multisuper_clone submodule update --init . ":(exclude)sub0" &&
1296 git -C multisuper_clone submodule status | sed "s/$OID_REGEX //" >actual &&
1297 test_cmp expect actual
1300 test_expect_success
'submodule update --init with submodule.active set' '
1301 test_when_finished "rm -rf multisuper_clone" &&
1303 git clone file://"$pwd"/multisuper multisuper_clone &&
1304 git -C multisuper_clone config submodule.active "." &&
1305 git -C multisuper_clone config --add submodule.active ":(exclude)sub0" &&
1306 git -C multisuper_clone submodule update --init &&
1307 git -C multisuper_clone submodule status | sed "s/$OID_REGEX //" >actual &&
1308 test_cmp expect actual
1311 test_expect_success
'submodule update and setting submodule.<name>.active' '
1312 test_when_finished "rm -rf multisuper_clone" &&
1314 git clone file://"$pwd"/multisuper multisuper_clone &&
1315 git -C multisuper_clone config --bool submodule.sub0.active "true" &&
1316 git -C multisuper_clone config --bool submodule.sub1.active "false" &&
1317 git -C multisuper_clone config --bool submodule.sub2.active "true" &&
1319 cat >expect <<-\EOF &&
1325 git -C multisuper_clone submodule update &&
1326 git -C multisuper_clone submodule status | sed "s/$OID_REGEX //" >actual &&
1327 test_cmp expect actual
1330 test_expect_success
'clone active submodule without submodule url set' '
1331 test_when_finished "rm -rf test/test" &&
1333 # another dir breaks accidental relative paths still being correct
1334 git clone file://"$pwd"/multisuper test/test &&
1337 git config submodule.active "." &&
1339 # do not pass --init flag, as the submodule is already active:
1340 git submodule update &&
1341 git submodule status >actual_raw &&
1343 cut -d" " -f3- actual_raw >actual &&
1344 cat >expect <<-\EOF &&
1350 test_cmp expect actual
1354 test_expect_success
'update submodules without url set in .gitconfig' '
1355 test_when_finished "rm -rf multisuper_clone" &&
1356 git clone file://"$pwd"/multisuper multisuper_clone &&
1358 git -C multisuper_clone submodule init &&
1359 for s in sub0 sub1 sub2 sub3
1361 key=submodule.$s.url &&
1362 git -C multisuper_clone config --local --unset $key &&
1363 git -C multisuper_clone config --file .gitmodules --unset $key || return 1
1366 test_must_fail git -C multisuper_clone submodule update 2>err &&
1367 grep "cannot clone submodule .sub[0-3]. without a URL" err
1370 test_expect_success
'clone --recurse-submodules with a pathspec works' '
1371 test_when_finished "rm -rf multisuper_clone" &&
1372 cat >expected <<-\EOF &&
1379 git clone --recurse-submodules="sub0" multisuper multisuper_clone &&
1380 git -C multisuper_clone submodule status | sed "s/$OID_REGEX //" >actual &&
1381 test_cmp expected actual
1384 test_expect_success
'clone with multiple --recurse-submodules options' '
1385 test_when_finished "rm -rf multisuper_clone" &&
1386 cat >expect <<-\EOF &&
1393 git clone --recurse-submodules="." \
1394 --recurse-submodules=":(exclude)sub0" \
1395 --recurse-submodules=":(exclude)sub2" \
1396 multisuper multisuper_clone &&
1397 git -C multisuper_clone submodule status | sed "s/$OID_REGEX //" >actual &&
1398 test_cmp expect actual
1401 test_expect_success
'clone and subsequent updates correctly auto-initialize submodules' '
1402 test_when_finished "rm -rf multisuper_clone" &&
1403 cat <<-\EOF >expect &&
1410 cat <<-\EOF >expect2 &&
1419 git clone --recurse-submodules="." \
1420 --recurse-submodules=":(exclude)sub0" \
1421 --recurse-submodules=":(exclude)sub2" \
1422 --recurse-submodules=":(exclude)sub4" \
1423 multisuper multisuper_clone &&
1425 git -C multisuper_clone submodule status | sed "s/$OID_REGEX //" >actual &&
1426 test_cmp expect actual &&
1428 git -C multisuper submodule add ../sub1 sub4 &&
1429 git -C multisuper submodule add ../sub1 sub5 &&
1430 git -C multisuper commit -m "add more submodules" &&
1431 # obtain the new superproject
1432 git -C multisuper_clone pull &&
1433 git -C multisuper_clone submodule update --init &&
1434 git -C multisuper_clone submodule status | sed "s/$OID_REGEX //" >actual &&
1435 test_cmp expect2 actual
1438 test_expect_success
'init properly sets the config' '
1439 test_when_finished "rm -rf multisuper_clone" &&
1440 git clone --recurse-submodules="." \
1441 --recurse-submodules=":(exclude)sub0" \
1442 multisuper multisuper_clone &&
1444 git -C multisuper_clone submodule init -- sub0 sub1 &&
1445 git -C multisuper_clone config --get submodule.sub0.active &&
1446 test_must_fail git -C multisuper_clone config --get submodule.sub1.active
1449 test_expect_success
'recursive clone respects -q' '
1450 test_when_finished "rm -rf multisuper_clone" &&
1451 git clone -q --recurse-submodules multisuper multisuper_clone >actual &&
1452 test_must_be_empty actual
1455 test_expect_success
'`submodule init` and `init.templateDir`' '
1456 mkdir -p tmpl/hooks &&
1457 write_script tmpl/hooks/post-checkout <<-EOF &&
1459 echo I was here >hook.run
1463 test_config init.templateDir "$(pwd)/tmpl" &&
1464 test_when_finished \
1465 "git config --global --unset init.templateDir || true" &&
1467 sane_unset GIT_TEMPLATE_DIR &&
1468 NO_SET_GIT_TEMPLATE_DIR=t &&
1469 export NO_SET_GIT_TEMPLATE_DIR &&
1471 git config --global init.templateDir "$(pwd)/tmpl" &&
1472 test_must_fail git submodule \
1473 add "$submodurl" sub-global 2>err &&
1474 git config --global --unset init.templateDir &&
1475 grep HOOK-RUN err &&
1476 test_path_is_file sub-global/hook.run &&
1478 git config init.templateDir "$(pwd)/tmpl" &&
1479 git submodule add "$submodurl" sub-local 2>err &&
1480 git config --unset init.templateDir &&
1481 ! grep HOOK-RUN err &&
1482 test_path_is_missing sub-local/hook.run