]> git.ipfire.org Git - thirdparty/git.git/blob - t/t5617-clone-submodules-remote.sh
l10n: it.po: update the Italian translation for Git 2.24.0 round #2
[thirdparty/git.git] / t / t5617-clone-submodules-remote.sh
1 #!/bin/sh
2
3 test_description='Test cloning repos with submodules using remote-tracking branches'
4
5 . ./test-lib.sh
6
7 pwd=$(pwd)
8
9 test_expect_success 'setup' '
10 git checkout -b master &&
11 test_commit commit1 &&
12 mkdir sub &&
13 (
14 cd sub &&
15 git init &&
16 test_commit subcommit1 &&
17 git tag sub_when_added_to_super
18 ) &&
19 git submodule add "file://$pwd/sub" sub &&
20 git commit -m "add submodule" &&
21 (
22 cd sub &&
23 test_commit subcommit2
24 )
25 '
26
27 test_expect_success 'clone with --no-remote-submodules' '
28 test_when_finished "rm -rf super_clone" &&
29 git clone --recurse-submodules --no-remote-submodules "file://$pwd/." super_clone &&
30 (
31 cd super_clone/sub &&
32 git diff --exit-code sub_when_added_to_super
33 )
34 '
35
36 test_expect_success 'clone with --remote-submodules' '
37 test_when_finished "rm -rf super_clone" &&
38 git clone --recurse-submodules --remote-submodules "file://$pwd/." super_clone &&
39 (
40 cd super_clone/sub &&
41 git diff --exit-code remotes/origin/master
42 )
43 '
44
45 test_expect_success 'check the default is --no-remote-submodules' '
46 test_when_finished "rm -rf super_clone" &&
47 git clone --recurse-submodules "file://$pwd/." super_clone &&
48 (
49 cd super_clone/sub &&
50 git diff --exit-code sub_when_added_to_super
51 )
52 '
53
54 test_done