3 test_description='fetch --all works correctly'
14 git commit -m "Initial" &&
15 git checkout -b side &&
19 git commit -m "Second" &&
24 test_expect_success setup '
25 setup_repository one &&
26 setup_repository two &&
28 cd two && git branch another
30 git clone --mirror two three &&
34 cat > test/expect << EOF
37 origin/HEAD -> origin/master
48 test_expect_success 'git fetch --all' '
50 git remote add one ../one &&
51 git remote add two ../two &&
52 git remote add three ../three &&
54 git branch -r > output &&
55 test_cmp expect output)
58 test_expect_success 'git fetch --all should continue if a remote has errors' '
59 (git clone one test2 &&
61 git remote add bad ../non-existing &&
62 git remote add one ../one &&
63 git remote add two ../two &&
64 git remote add three ../three &&
65 test_must_fail git fetch --all &&
66 git branch -r > output &&
67 test_cmp ../test/expect output)
70 test_expect_success 'git fetch --all does not allow non-option arguments' '
72 test_must_fail git fetch --all origin &&
73 test_must_fail git fetch --all origin master)
77 origin/HEAD -> origin/master
85 test_expect_success 'git fetch --multiple (but only one remote)' '
86 (git clone one test3 &&
88 git remote add three ../three &&
89 git fetch --multiple three &&
90 git branch -r > output &&
91 test_cmp ../expect output)
102 test_expect_success 'git fetch --multiple (two remotes)' '
103 (git clone one test4 &&
105 git remote rm origin &&
106 git remote add one ../one &&
107 git remote add two ../two &&
108 GIT_TRACE=1 git fetch --multiple one two 2>trace &&
109 git branch -r > output &&
110 test_cmp ../expect output &&
111 grep "built-in: git gc" trace >gc &&
112 test_line_count = 1 gc
116 test_expect_success 'git fetch --multiple (bad remote names)' '
118 test_must_fail git fetch --multiple four)
122 test_expect_success 'git fetch --all (skipFetchAll)' '
124 for b in $(git branch -r)
126 git branch -r -d $b || exit 1
128 git remote add three ../three &&
129 git config remote.three.skipFetchAll true &&
131 git branch -r > output &&
132 test_cmp ../expect output)
146 test_expect_success 'git fetch --multiple (ignoring skipFetchAll)' '
148 for b in $(git branch -r)
150 git branch -r -d $b || exit 1
152 git fetch --multiple one two three &&
153 git branch -r > output &&
154 test_cmp ../expect output)
157 test_expect_success 'git fetch --all --no-tags' '
158 git clone one test5 &&
159 git clone test5 test6 &&
160 (cd test5 && git tag test-tag) &&
163 git fetch --all --no-tags &&
166 test_must_be_empty test6/output
169 test_expect_success 'git fetch --all --tags' '
170 echo test-tag >expect &&
171 git clone one test7 &&
172 git clone test7 test8 &&
175 test_commit test-tag &&
176 git reset --hard HEAD^
180 git fetch --all --tags &&
183 test_cmp expect test8/output
186 test_expect_success 'parallel' '
187 git remote add one ./bogus1 &&
188 git remote add two ./bogus2 &&
190 test_must_fail env GIT_TRACE="$PWD/trace" \
191 git fetch --jobs=2 --multiple one two 2>err &&
192 grep "preparing to run up to 2 tasks" trace &&
193 test_i18ngrep "could not fetch .one.*128" err &&
194 test_i18ngrep "could not fetch .two.*128" err