Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='git remote porcelain-ish' |
| 4 | |
| 5 | . ./test-lib.sh |
| 6 | |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 7 | setup_repository () { |
| 8 | mkdir "$1" && ( |
| 9 | cd "$1" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 10 | git init -b main && |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 11 | >file && |
| 12 | git add file && |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 13 | test_tick && |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 14 | git commit -m "Initial" && |
| 15 | git checkout -b side && |
| 16 | >elif && |
| 17 | git add elif && |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 18 | test_tick && |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 19 | git commit -m "Second" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 20 | git checkout main |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 21 | ) |
| 22 | } |
| 23 | |
| 24 | tokens_match () { |
| 25 | echo "$1" | tr ' ' '\012' | sort | sed -e '/^$/d' >expect && |
| 26 | echo "$2" | tr ' ' '\012' | sort | sed -e '/^$/d' >actual && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 27 | test_cmp expect actual |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | check_remote_track () { |
Jay Soffian | 7ecbbf8 | 2009-02-25 03:32:27 -0500 | [diff] [blame] | 31 | actual=$(git remote show "$1" | sed -ne 's|^ \(.*\) tracked$|\1|p') |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 32 | shift && |
| 33 | tokens_match "$*" "$actual" |
| 34 | } |
| 35 | |
| 36 | check_tracking_branch () { |
| 37 | f="" && |
| 38 | r=$(git for-each-ref "--format=%(refname)" | |
| 39 | sed -ne "s|^refs/remotes/$1/||p") && |
| 40 | shift && |
| 41 | tokens_match "$*" "$r" |
| 42 | } |
| 43 | |
| 44 | test_expect_success setup ' |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 45 | setup_repository one && |
| 46 | setup_repository two && |
| 47 | ( |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 48 | cd two && |
| 49 | git branch another |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 50 | ) && |
| 51 | git clone one test |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 52 | ' |
| 53 | |
Johannes Schindelin | d8ff76c | 2016-02-17 17:20:47 +0100 | [diff] [blame] | 54 | test_expect_success 'add remote whose URL agrees with url.<...>.insteadOf' ' |
| 55 | test_config url.git@host.com:team/repo.git.insteadOf myremote && |
| 56 | git remote add myremote git@host.com:team/repo.git |
| 57 | ' |
| 58 | |
Ævar Arnfjörð Bjarmason | a926c4b | 2021-02-11 02:53:51 +0100 | [diff] [blame] | 59 | test_expect_success 'remote information for the origin' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 60 | ( |
| 61 | cd test && |
| 62 | tokens_match origin "$(git remote)" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 63 | check_remote_track origin main side && |
| 64 | check_tracking_branch origin HEAD main side |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 65 | ) |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 66 | ' |
| 67 | |
| 68 | test_expect_success 'add another remote' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 69 | ( |
| 70 | cd test && |
| 71 | git remote add -f second ../two && |
| 72 | tokens_match "origin second" "$(git remote)" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 73 | check_tracking_branch second main side another && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 74 | git for-each-ref "--format=%(refname)" refs/remotes | |
| 75 | sed -e "/^refs\/remotes\/origin\//d" \ |
| 76 | -e "/^refs\/remotes\/second\//d" >actual && |
Ævar Arnfjörð Bjarmason | d3c6751 | 2018-07-27 17:48:11 +0000 | [diff] [blame] | 77 | test_must_be_empty actual |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 78 | ) |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 79 | ' |
| 80 | |
Ævar Arnfjörð Bjarmason | a926c4b | 2021-02-11 02:53:51 +0100 | [diff] [blame] | 81 | test_expect_success 'check remote-tracking' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 82 | ( |
| 83 | cd test && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 84 | check_remote_track origin main side && |
| 85 | check_remote_track second main side another |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 86 | ) |
Jiang Xin | f7dc6a9 | 2012-08-27 13:36:54 +0800 | [diff] [blame] | 87 | ' |
| 88 | |
Jeff King | 1ce89cc | 2008-04-22 07:11:13 -0400 | [diff] [blame] | 89 | test_expect_success 'remote forces tracking branches' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 90 | ( |
| 91 | cd test && |
Elia Pinto | c009781 | 2015-12-23 14:45:53 +0100 | [diff] [blame] | 92 | case $(git config remote.second.fetch) in |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 93 | +*) true ;; |
| 94 | *) false ;; |
| 95 | esac |
| 96 | ) |
Jeff King | 1ce89cc | 2008-04-22 07:11:13 -0400 | [diff] [blame] | 97 | ' |
| 98 | |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 99 | test_expect_success 'remove remote' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 100 | ( |
| 101 | cd test && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 102 | git symbolic-ref refs/remotes/second/HEAD refs/remotes/second/main && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 103 | git remote rm second |
| 104 | ) |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 105 | ' |
| 106 | |
Ævar Arnfjörð Bjarmason | a926c4b | 2021-02-11 02:53:51 +0100 | [diff] [blame] | 107 | test_expect_success 'remove remote' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 108 | ( |
| 109 | cd test && |
| 110 | tokens_match origin "$(git remote)" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 111 | check_remote_track origin main side && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 112 | git for-each-ref "--format=%(refname)" refs/remotes | |
| 113 | sed -e "/^refs\/remotes\/origin\//d" >actual && |
Ævar Arnfjörð Bjarmason | d3c6751 | 2018-07-27 17:48:11 +0000 | [diff] [blame] | 114 | test_must_be_empty actual |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 115 | ) |
Junio C Hamano | 683b567 | 2007-09-23 22:29:12 -0700 | [diff] [blame] | 116 | ' |
| 117 | |
Matthieu Moy | 1393123 | 2010-11-02 16:31:25 +0100 | [diff] [blame] | 118 | test_expect_success 'remove remote protects local branches' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 119 | ( |
| 120 | cd test && |
| 121 | cat >expect1 <<-\EOF && |
| 122 | Note: A branch outside the refs/remotes/ hierarchy was not removed; |
| 123 | to delete it, use: |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 124 | git branch -d main |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 125 | EOF |
| 126 | cat >expect2 <<-\EOF && |
| 127 | Note: Some branches outside the refs/remotes/ hierarchy were not removed; |
| 128 | to delete them, use: |
| 129 | git branch -d foobranch |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 130 | git branch -d main |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 131 | EOF |
| 132 | git tag footag && |
| 133 | git config --add remote.oops.fetch "+refs/*:refs/*" && |
| 134 | git remote remove oops 2>actual1 && |
| 135 | git branch foobranch && |
| 136 | git config --add remote.oops.fetch "+refs/*:refs/*" && |
| 137 | git remote rm oops 2>actual2 && |
| 138 | git branch -d foobranch && |
| 139 | git tag -d footag && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 140 | test_cmp expect1 actual1 && |
| 141 | test_cmp expect2 actual2 |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 142 | ) |
Jay Soffian | 441adf0 | 2009-02-04 11:06:07 -0500 | [diff] [blame] | 143 | ' |
| 144 | |
Thomas Gummerer | cc8e538 | 2016-02-16 10:47:51 +0100 | [diff] [blame] | 145 | test_expect_success 'remove errors out early when deleting non-existent branch' ' |
| 146 | ( |
| 147 | cd test && |
Ævar Arnfjörð Bjarmason | 9144ba4 | 2020-10-27 10:41:36 +0100 | [diff] [blame] | 148 | echo "error: No such remote: '\''foo'\''" >expect && |
| 149 | test_expect_code 2 git remote rm foo 2>actual && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 150 | test_cmp expect actual |
Thomas Gummerer | cc8e538 | 2016-02-16 10:47:51 +0100 | [diff] [blame] | 151 | ) |
| 152 | ' |
| 153 | |
Ross Lagerwall | 20690b2 | 2017-02-18 00:23:41 +0000 | [diff] [blame] | 154 | test_expect_success 'remove remote with a branch without configured merge' ' |
| 155 | test_when_finished "( |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 156 | git -C test checkout main; |
Ross Lagerwall | 20690b2 | 2017-02-18 00:23:41 +0000 | [diff] [blame] | 157 | git -C test branch -D two; |
| 158 | git -C test config --remove-section remote.two; |
| 159 | git -C test config --remove-section branch.second; |
| 160 | true |
| 161 | )" && |
| 162 | ( |
| 163 | cd test && |
| 164 | git remote add two ../two && |
| 165 | git fetch two && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 166 | git checkout -b second two/main^0 && |
Ross Lagerwall | 20690b2 | 2017-02-18 00:23:41 +0000 | [diff] [blame] | 167 | git config branch.second.remote two && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 168 | git checkout main && |
Ross Lagerwall | 20690b2 | 2017-02-18 00:23:41 +0000 | [diff] [blame] | 169 | git remote rm two |
| 170 | ) |
| 171 | ' |
| 172 | |
Thomas Gummerer | cc8e538 | 2016-02-16 10:47:51 +0100 | [diff] [blame] | 173 | test_expect_success 'rename errors out early when deleting non-existent branch' ' |
| 174 | ( |
| 175 | cd test && |
Ævar Arnfjörð Bjarmason | 9144ba4 | 2020-10-27 10:41:36 +0100 | [diff] [blame] | 176 | echo "error: No such remote: '\''foo'\''" >expect && |
| 177 | test_expect_code 2 git remote rename foo bar 2>actual && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 178 | test_cmp expect actual |
Thomas Gummerer | cc8e538 | 2016-02-16 10:47:51 +0100 | [diff] [blame] | 179 | ) |
| 180 | ' |
| 181 | |
Andrei Rybak | abcb66c | 2021-06-11 13:18:50 +0200 | [diff] [blame] | 182 | test_expect_success 'rename errors out early when new name is invalid' ' |
Sean Barag | 444825c | 2020-10-01 03:46:12 +0000 | [diff] [blame] | 183 | test_config remote.foo.vcs bar && |
| 184 | echo "fatal: '\''invalid...name'\'' is not a valid remote name" >expect && |
| 185 | test_must_fail git remote rename foo invalid...name 2>actual && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 186 | test_cmp expect actual |
Sean Barag | 444825c | 2020-10-01 03:46:12 +0000 | [diff] [blame] | 187 | ' |
| 188 | |
Thomas Gummerer | a31eeae | 2016-02-16 10:47:52 +0100 | [diff] [blame] | 189 | test_expect_success 'add existing foreign_vcs remote' ' |
| 190 | test_config remote.foo.vcs bar && |
Ævar Arnfjörð Bjarmason | 9144ba4 | 2020-10-27 10:41:36 +0100 | [diff] [blame] | 191 | echo "error: remote foo already exists." >expect && |
| 192 | test_expect_code 3 git remote add foo bar 2>actual && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 193 | test_cmp expect actual |
Thomas Gummerer | a31eeae | 2016-02-16 10:47:52 +0100 | [diff] [blame] | 194 | ' |
| 195 | |
| 196 | test_expect_success 'add existing foreign_vcs remote' ' |
| 197 | test_config remote.foo.vcs bar && |
| 198 | test_config remote.bar.vcs bar && |
Ævar Arnfjörð Bjarmason | 9144ba4 | 2020-10-27 10:41:36 +0100 | [diff] [blame] | 199 | echo "error: remote bar already exists." >expect && |
| 200 | test_expect_code 3 git remote rename foo bar 2>actual && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 201 | test_cmp expect actual |
Thomas Gummerer | a31eeae | 2016-02-16 10:47:52 +0100 | [diff] [blame] | 202 | ' |
| 203 | |
Sean Barag | 444825c | 2020-10-01 03:46:12 +0000 | [diff] [blame] | 204 | test_expect_success 'add invalid foreign_vcs remote' ' |
| 205 | echo "fatal: '\''invalid...name'\'' is not a valid remote name" >expect && |
| 206 | test_must_fail git remote add invalid...name bar 2>actual && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 207 | test_cmp expect actual |
Sean Barag | 444825c | 2020-10-01 03:46:12 +0000 | [diff] [blame] | 208 | ' |
| 209 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 210 | cat >test/expect <<EOF |
Johannes Schindelin | 4704640 | 2008-02-29 01:45:24 +0000 | [diff] [blame] | 211 | * remote origin |
Michael J Gruber | 857f8c3 | 2009-06-13 18:29:10 +0200 | [diff] [blame] | 212 | Fetch URL: $(pwd)/one |
| 213 | Push URL: $(pwd)/one |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 214 | HEAD branch: main |
Jay Soffian | 7ecbbf8 | 2009-02-25 03:32:27 -0500 | [diff] [blame] | 215 | Remote branches: |
Johannes Schindelin | 66713e8 | 2020-10-23 14:00:05 +0000 | [diff] [blame] | 216 | main new (next fetch will store in remotes/origin) |
| 217 | side tracked |
Jay Soffian | 7ecbbf8 | 2009-02-25 03:32:27 -0500 | [diff] [blame] | 218 | Local branches configured for 'git pull': |
Johannes Schindelin | 66713e8 | 2020-10-23 14:00:05 +0000 | [diff] [blame] | 219 | ahead merges with remote main |
| 220 | main merges with remote main |
Jay Soffian | 7ecbbf8 | 2009-02-25 03:32:27 -0500 | [diff] [blame] | 221 | octopus merges with remote topic-a |
| 222 | and with remote topic-b |
| 223 | and with remote topic-c |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 224 | rebase rebases onto remote main |
Jay Soffian | e5dcbfd | 2009-02-25 03:32:28 -0500 | [diff] [blame] | 225 | Local refs configured for 'git push': |
Johannes Schindelin | 66713e8 | 2020-10-23 14:00:05 +0000 | [diff] [blame] | 226 | main pushes to main (local out of date) |
| 227 | main pushes to upstream (create) |
Jay Soffian | e61e0cc | 2009-02-25 03:32:24 -0500 | [diff] [blame] | 228 | * remote two |
Michael J Gruber | 857f8c3 | 2009-06-13 18:29:10 +0200 | [diff] [blame] | 229 | Fetch URL: ../two |
| 230 | Push URL: ../three |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 231 | HEAD branch: main |
Jay Soffian | e5dcbfd | 2009-02-25 03:32:28 -0500 | [diff] [blame] | 232 | Local refs configured for 'git push': |
Johannes Schindelin | 66713e8 | 2020-10-23 14:00:05 +0000 | [diff] [blame] | 233 | ahead forces to main (fast-forwardable) |
| 234 | main pushes to another (up to date) |
Johannes Schindelin | 4704640 | 2008-02-29 01:45:24 +0000 | [diff] [blame] | 235 | EOF |
| 236 | |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 237 | test_expect_success 'show' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 238 | ( |
| 239 | cd test && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 240 | git config --add remote.origin.fetch refs/heads/main:refs/heads/upstream && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 241 | git fetch && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 242 | git checkout -b ahead origin/main && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 243 | echo 1 >>file && |
| 244 | test_tick && |
| 245 | git commit -m update file && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 246 | git checkout main && |
| 247 | git branch --track octopus origin/main && |
| 248 | git branch --track rebase origin/main && |
| 249 | git branch -d -r origin/main && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 250 | git config --add remote.two.url ../two && |
| 251 | git config --add remote.two.pushurl ../three && |
| 252 | git config branch.rebase.rebase true && |
| 253 | git config branch.octopus.merge "topic-a topic-b topic-c" && |
| 254 | ( |
| 255 | cd ../one && |
| 256 | echo 1 >file && |
| 257 | test_tick && |
| 258 | git commit -m update file |
| 259 | ) && |
| 260 | git config --add remote.origin.push : && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 261 | git config --add remote.origin.push refs/heads/main:refs/heads/upstream && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 262 | git config --add remote.origin.push +refs/tags/lastbackup && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 263 | git config --add remote.two.push +refs/heads/ahead:refs/heads/main && |
| 264 | git config --add remote.two.push refs/heads/main:refs/heads/another && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 265 | git remote show origin two >output && |
| 266 | git branch -d rebase octopus && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 267 | test_cmp expect output |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 268 | ) |
Johannes Schindelin | 4704640 | 2008-02-29 01:45:24 +0000 | [diff] [blame] | 269 | ' |
| 270 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 271 | cat >test/expect <<EOF |
Olivier Marin | 0ecfcb3 | 2008-06-10 16:51:08 +0200 | [diff] [blame] | 272 | * remote origin |
Michael J Gruber | 857f8c3 | 2009-06-13 18:29:10 +0200 | [diff] [blame] | 273 | Fetch URL: $(pwd)/one |
| 274 | Push URL: $(pwd)/one |
Jay Soffian | e61e0cc | 2009-02-25 03:32:24 -0500 | [diff] [blame] | 275 | HEAD branch: (not queried) |
Jay Soffian | 7ecbbf8 | 2009-02-25 03:32:27 -0500 | [diff] [blame] | 276 | Remote branches: (status not queried) |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 277 | main |
Johannes Sixt | 20244ea | 2008-10-22 09:39:47 +0200 | [diff] [blame] | 278 | side |
Jay Soffian | e5dcbfd | 2009-02-25 03:32:28 -0500 | [diff] [blame] | 279 | Local branches configured for 'git pull': |
Johannes Schindelin | 66713e8 | 2020-10-23 14:00:05 +0000 | [diff] [blame] | 280 | ahead merges with remote main |
| 281 | main merges with remote main |
Jay Soffian | e5dcbfd | 2009-02-25 03:32:28 -0500 | [diff] [blame] | 282 | Local refs configured for 'git push' (status not queried): |
| 283 | (matching) pushes to (matching) |
Johannes Schindelin | 66713e8 | 2020-10-23 14:00:05 +0000 | [diff] [blame] | 284 | refs/heads/main pushes to refs/heads/upstream |
Jay Soffian | e5dcbfd | 2009-02-25 03:32:28 -0500 | [diff] [blame] | 285 | refs/tags/lastbackup forces to refs/tags/lastbackup |
Olivier Marin | 0ecfcb3 | 2008-06-10 16:51:08 +0200 | [diff] [blame] | 286 | EOF |
| 287 | |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 288 | test_expect_success 'show -n' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 289 | mv one one.unreachable && |
| 290 | ( |
| 291 | cd test && |
| 292 | git remote show -n origin >output && |
| 293 | mv ../one.unreachable ../one && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 294 | test_cmp expect output |
Jay Soffian | bc14fac | 2009-02-25 03:32:25 -0500 | [diff] [blame] | 295 | ) |
| 296 | ' |
| 297 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 298 | test_expect_success 'prune' ' |
| 299 | ( |
| 300 | cd one && |
| 301 | git branch -m side side2 |
| 302 | ) && |
| 303 | ( |
| 304 | cd test && |
| 305 | git fetch origin && |
| 306 | git remote prune origin && |
| 307 | git rev-parse refs/remotes/origin/side2 && |
| 308 | test_must_fail git rev-parse refs/remotes/origin/side |
| 309 | ) |
| 310 | ' |
| 311 | |
| 312 | test_expect_success 'set-head --delete' ' |
| 313 | ( |
| 314 | cd test && |
| 315 | git symbolic-ref refs/remotes/origin/HEAD && |
| 316 | git remote set-head --delete origin && |
| 317 | test_must_fail git symbolic-ref refs/remotes/origin/HEAD |
| 318 | ) |
| 319 | ' |
| 320 | |
| 321 | test_expect_success 'set-head --auto' ' |
| 322 | ( |
| 323 | cd test && |
| 324 | git remote set-head --auto origin && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 325 | echo refs/remotes/origin/main >expect && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 326 | git symbolic-ref refs/remotes/origin/HEAD >output && |
| 327 | test_cmp expect output |
| 328 | ) |
| 329 | ' |
| 330 | |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 331 | test_expect_success 'set-head --auto has no problem w/multiple HEADs' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 332 | ( |
| 333 | cd test && |
Junio C Hamano | a4dfee0 | 2013-09-17 21:45:34 -0700 | [diff] [blame] | 334 | git fetch two "refs/heads/*:refs/remotes/two/*" && |
Junio C Hamano | a45b5f0 | 2013-09-17 19:10:31 -0700 | [diff] [blame] | 335 | git remote set-head --auto two >output 2>&1 && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 336 | echo "two/HEAD set to main" >expect && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 337 | test_cmp expect output |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 338 | ) |
Jay Soffian | bc14fac | 2009-02-25 03:32:25 -0500 | [diff] [blame] | 339 | ' |
| 340 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 341 | cat >test/expect <<\EOF |
Jay Soffian | bc14fac | 2009-02-25 03:32:25 -0500 | [diff] [blame] | 342 | refs/remotes/origin/side2 |
| 343 | EOF |
| 344 | |
| 345 | test_expect_success 'set-head explicit' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 346 | ( |
| 347 | cd test && |
| 348 | git remote set-head origin side2 && |
| 349 | git symbolic-ref refs/remotes/origin/HEAD >output && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 350 | git remote set-head origin main && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 351 | test_cmp expect output |
| 352 | ) |
Jay Soffian | bc14fac | 2009-02-25 03:32:25 -0500 | [diff] [blame] | 353 | ' |
| 354 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 355 | cat >test/expect <<EOF |
Olivier Marin | 8d76792 | 2008-06-10 16:51:35 +0200 | [diff] [blame] | 356 | Pruning origin |
Johan Herland | 86521ac | 2008-09-01 21:07:33 +0200 | [diff] [blame] | 357 | URL: $(pwd)/one |
Olivier Marin | 8d76792 | 2008-06-10 16:51:35 +0200 | [diff] [blame] | 358 | * [would prune] origin/side2 |
| 359 | EOF |
| 360 | |
| 361 | test_expect_success 'prune --dry-run' ' |
Eric Sunshine | 431f4a2 | 2018-07-01 20:23:48 -0400 | [diff] [blame] | 362 | git -C one branch -m side2 side && |
| 363 | test_when_finished "git -C one branch -m side side2" && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 364 | ( |
| 365 | cd test && |
| 366 | git remote prune --dry-run origin >output && |
| 367 | git rev-parse refs/remotes/origin/side2 && |
| 368 | test_must_fail git rev-parse refs/remotes/origin/side && |
Ævar Arnfjörð Bjarmason | 1108cea | 2021-02-11 02:53:53 +0100 | [diff] [blame] | 369 | test_cmp expect output |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 370 | ) |
Olivier Marin | 8d76792 | 2008-06-10 16:51:35 +0200 | [diff] [blame] | 371 | ' |
| 372 | |
Johannes Schindelin | 4ebc914 | 2008-02-29 01:46:07 +0000 | [diff] [blame] | 373 | test_expect_success 'add --mirror && prune' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 374 | mkdir mirror && |
| 375 | ( |
| 376 | cd mirror && |
| 377 | git init --bare && |
| 378 | git remote add --mirror -f origin ../one |
| 379 | ) && |
| 380 | ( |
| 381 | cd one && |
| 382 | git branch -m side2 side |
| 383 | ) && |
| 384 | ( |
| 385 | cd mirror && |
| 386 | git rev-parse --verify refs/heads/side2 && |
| 387 | test_must_fail git rev-parse --verify refs/heads/side && |
| 388 | git fetch origin && |
| 389 | git remote prune origin && |
| 390 | test_must_fail git rev-parse --verify refs/heads/side2 && |
| 391 | git rev-parse --verify refs/heads/side |
| 392 | ) |
Johannes Schindelin | 4ebc914 | 2008-02-29 01:46:07 +0000 | [diff] [blame] | 393 | ' |
| 394 | |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 395 | test_expect_success 'add --mirror=fetch' ' |
| 396 | mkdir mirror-fetch && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 397 | git init -b main mirror-fetch/parent && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 398 | ( |
| 399 | cd mirror-fetch/parent && |
| 400 | test_commit one |
| 401 | ) && |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 402 | git init --bare mirror-fetch/child && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 403 | ( |
| 404 | cd mirror-fetch/child && |
| 405 | git remote add --mirror=fetch -f parent ../parent |
| 406 | ) |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 407 | ' |
| 408 | |
| 409 | test_expect_success 'fetch mirrors act as mirrors during fetch' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 410 | ( |
| 411 | cd mirror-fetch/parent && |
| 412 | git branch new && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 413 | git branch -m main renamed |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 414 | ) && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 415 | ( |
| 416 | cd mirror-fetch/child && |
| 417 | git fetch parent && |
| 418 | git rev-parse --verify refs/heads/new && |
| 419 | git rev-parse --verify refs/heads/renamed |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 420 | ) |
| 421 | ' |
| 422 | |
| 423 | test_expect_success 'fetch mirrors can prune' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 424 | ( |
| 425 | cd mirror-fetch/child && |
| 426 | git remote prune parent && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 427 | test_must_fail git rev-parse --verify refs/heads/main |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 428 | ) |
| 429 | ' |
| 430 | |
| 431 | test_expect_success 'fetch mirrors do not act as mirrors during push' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 432 | ( |
| 433 | cd mirror-fetch/parent && |
| 434 | git checkout HEAD^0 |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 435 | ) && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 436 | ( |
| 437 | cd mirror-fetch/child && |
| 438 | git branch -m renamed renamed2 && |
| 439 | git push parent : |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 440 | ) && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 441 | ( |
| 442 | cd mirror-fetch/parent && |
| 443 | git rev-parse --verify renamed && |
| 444 | test_must_fail git rev-parse --verify refs/heads/renamed2 |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 445 | ) |
| 446 | ' |
| 447 | |
Jeff King | 3eafdc9 | 2011-05-26 11:11:00 -0400 | [diff] [blame] | 448 | test_expect_success 'add fetch mirror with specific branches' ' |
| 449 | git init --bare mirror-fetch/track && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 450 | ( |
| 451 | cd mirror-fetch/track && |
| 452 | git remote add --mirror=fetch -t heads/new parent ../parent |
Jeff King | 3eafdc9 | 2011-05-26 11:11:00 -0400 | [diff] [blame] | 453 | ) |
| 454 | ' |
| 455 | |
| 456 | test_expect_success 'fetch mirror respects specific branches' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 457 | ( |
| 458 | cd mirror-fetch/track && |
| 459 | git fetch parent && |
| 460 | git rev-parse --verify refs/heads/new && |
| 461 | test_must_fail git rev-parse --verify refs/heads/renamed |
Jeff King | 3eafdc9 | 2011-05-26 11:11:00 -0400 | [diff] [blame] | 462 | ) |
| 463 | ' |
| 464 | |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 465 | test_expect_success 'add --mirror=push' ' |
| 466 | mkdir mirror-push && |
| 467 | git init --bare mirror-push/public && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 468 | git init -b main mirror-push/private && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 469 | ( |
| 470 | cd mirror-push/private && |
| 471 | test_commit one && |
| 472 | git remote add --mirror=push public ../public |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 473 | ) |
| 474 | ' |
| 475 | |
| 476 | test_expect_success 'push mirrors act as mirrors during push' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 477 | ( |
| 478 | cd mirror-push/private && |
| 479 | git branch new && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 480 | git branch -m main renamed && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 481 | git push public |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 482 | ) && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 483 | ( |
| 484 | cd mirror-push/private && |
| 485 | git rev-parse --verify refs/heads/new && |
| 486 | git rev-parse --verify refs/heads/renamed && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 487 | test_must_fail git rev-parse --verify refs/heads/main |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 488 | ) |
| 489 | ' |
| 490 | |
| 491 | test_expect_success 'push mirrors do not act as mirrors during fetch' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 492 | ( |
| 493 | cd mirror-push/public && |
| 494 | git branch -m renamed renamed2 && |
| 495 | git symbolic-ref HEAD refs/heads/renamed2 |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 496 | ) && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 497 | ( |
| 498 | cd mirror-push/private && |
| 499 | git fetch public && |
| 500 | git rev-parse --verify refs/heads/renamed && |
| 501 | test_must_fail git rev-parse --verify refs/heads/renamed2 |
Jeff King | a9f5a35 | 2011-03-30 15:53:19 -0400 | [diff] [blame] | 502 | ) |
| 503 | ' |
| 504 | |
Jeff King | 3eafdc9 | 2011-05-26 11:11:00 -0400 | [diff] [blame] | 505 | test_expect_success 'push mirrors do not allow you to specify refs' ' |
| 506 | git init mirror-push/track && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 507 | ( |
| 508 | cd mirror-push/track && |
| 509 | test_must_fail git remote add --mirror=push -t new public ../public |
Jeff King | 3eafdc9 | 2011-05-26 11:11:00 -0400 | [diff] [blame] | 510 | ) |
| 511 | ' |
| 512 | |
Shawn O. Pearce | c175a7a | 2008-05-31 23:58:05 -0400 | [diff] [blame] | 513 | test_expect_success 'add alt && prune' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 514 | mkdir alttst && |
| 515 | ( |
| 516 | cd alttst && |
| 517 | git init && |
| 518 | git remote add -f origin ../one && |
| 519 | git config remote.alt.url ../one && |
| 520 | git config remote.alt.fetch "+refs/heads/*:refs/remotes/origin/*" |
| 521 | ) && |
| 522 | ( |
| 523 | cd one && |
| 524 | git branch -m side side2 |
| 525 | ) && |
| 526 | ( |
| 527 | cd alttst && |
| 528 | git rev-parse --verify refs/remotes/origin/side && |
| 529 | test_must_fail git rev-parse --verify refs/remotes/origin/side2 && |
| 530 | git fetch alt && |
| 531 | git remote prune alt && |
| 532 | test_must_fail git rev-parse --verify refs/remotes/origin/side && |
| 533 | git rev-parse --verify refs/remotes/origin/side2 |
| 534 | ) |
Shawn O. Pearce | c175a7a | 2008-05-31 23:58:05 -0400 | [diff] [blame] | 535 | ' |
| 536 | |
Samuel Tardieu | 111fb85 | 2010-04-20 01:31:31 +0200 | [diff] [blame] | 537 | cat >test/expect <<\EOF |
| 538 | some-tag |
| 539 | EOF |
| 540 | |
| 541 | test_expect_success 'add with reachable tags (default)' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 542 | ( |
| 543 | cd one && |
| 544 | >foobar && |
| 545 | git add foobar && |
| 546 | git commit -m "Foobar" && |
| 547 | git tag -a -m "Foobar tag" foobar-tag && |
| 548 | git reset --hard HEAD~1 && |
| 549 | git tag -a -m "Some tag" some-tag |
| 550 | ) && |
| 551 | mkdir add-tags && |
| 552 | ( |
| 553 | cd add-tags && |
| 554 | git init && |
| 555 | git remote add -f origin ../one && |
| 556 | git tag -l some-tag >../test/output && |
| 557 | git tag -l foobar-tag >>../test/output && |
| 558 | test_must_fail git config remote.origin.tagopt |
| 559 | ) && |
Samuel Tardieu | 111fb85 | 2010-04-20 01:31:31 +0200 | [diff] [blame] | 560 | test_cmp test/expect test/output |
| 561 | ' |
| 562 | |
| 563 | cat >test/expect <<\EOF |
| 564 | some-tag |
| 565 | foobar-tag |
| 566 | --tags |
| 567 | EOF |
| 568 | |
| 569 | test_expect_success 'add --tags' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 570 | rm -rf add-tags && |
| 571 | ( |
| 572 | mkdir add-tags && |
| 573 | cd add-tags && |
| 574 | git init && |
| 575 | git remote add -f --tags origin ../one && |
| 576 | git tag -l some-tag >../test/output && |
| 577 | git tag -l foobar-tag >>../test/output && |
| 578 | git config remote.origin.tagopt >>../test/output |
| 579 | ) && |
Samuel Tardieu | 111fb85 | 2010-04-20 01:31:31 +0200 | [diff] [blame] | 580 | test_cmp test/expect test/output |
| 581 | ' |
| 582 | |
| 583 | cat >test/expect <<\EOF |
| 584 | --no-tags |
| 585 | EOF |
| 586 | |
| 587 | test_expect_success 'add --no-tags' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 588 | rm -rf add-tags && |
| 589 | ( |
| 590 | mkdir add-no-tags && |
| 591 | cd add-no-tags && |
| 592 | git init && |
| 593 | git remote add -f --no-tags origin ../one && |
Ævar Arnfjörð Bjarmason | bfa9148 | 2021-02-25 02:21:16 +0100 | [diff] [blame] | 594 | grep tagOpt .git/config && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 595 | git tag -l some-tag >../test/output && |
| 596 | git tag -l foobar-tag >../test/output && |
| 597 | git config remote.origin.tagopt >>../test/output |
| 598 | ) && |
| 599 | ( |
| 600 | cd one && |
| 601 | git tag -d some-tag foobar-tag |
| 602 | ) && |
Samuel Tardieu | 111fb85 | 2010-04-20 01:31:31 +0200 | [diff] [blame] | 603 | test_cmp test/expect test/output |
| 604 | ' |
| 605 | |
| 606 | test_expect_success 'reject --no-no-tags' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 607 | ( |
| 608 | cd add-no-tags && |
| 609 | test_must_fail git remote add -f --no-no-tags neworigin ../one |
| 610 | ) |
Samuel Tardieu | 111fb85 | 2010-04-20 01:31:31 +0200 | [diff] [blame] | 611 | ' |
| 612 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 613 | cat >one/expect <<\EOF |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 614 | apis/main |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 615 | apis/side |
| 616 | drosophila/another |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 617 | drosophila/main |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 618 | drosophila/side |
| 619 | EOF |
| 620 | |
| 621 | test_expect_success 'update' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 622 | ( |
| 623 | cd one && |
| 624 | git remote add drosophila ../two && |
| 625 | git remote add apis ../mirror && |
| 626 | git remote update && |
| 627 | git branch -r >output && |
| 628 | test_cmp expect output |
| 629 | ) |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 630 | ' |
| 631 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 632 | cat >one/expect <<\EOF |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 633 | drosophila/another |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 634 | drosophila/main |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 635 | drosophila/side |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 636 | manduca/main |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 637 | manduca/side |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 638 | megaloprepus/main |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 639 | megaloprepus/side |
| 640 | EOF |
| 641 | |
| 642 | test_expect_success 'update with arguments' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 643 | ( |
| 644 | cd one && |
| 645 | for b in $(git branch -r) |
| 646 | do |
Jeff King | e6821d0 | 2015-03-25 01:29:52 -0400 | [diff] [blame] | 647 | git branch -r -d $b || exit 1 |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 648 | done && |
| 649 | git remote add manduca ../mirror && |
| 650 | git remote add megaloprepus ../mirror && |
| 651 | git config remotes.phobaeticus "drosophila megaloprepus" && |
| 652 | git config remotes.titanus manduca && |
| 653 | git remote update phobaeticus titanus && |
| 654 | git branch -r >output && |
| 655 | test_cmp expect output |
| 656 | ) |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 657 | ' |
| 658 | |
Björn Gustavsson | e2d41c6 | 2009-11-09 21:11:59 +0100 | [diff] [blame] | 659 | test_expect_success 'update --prune' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 660 | ( |
| 661 | cd one && |
| 662 | git branch -m side2 side3 |
| 663 | ) && |
| 664 | ( |
| 665 | cd test && |
| 666 | git remote update --prune && |
| 667 | ( |
| 668 | cd ../one && |
| 669 | git branch -m side3 side2 |
| 670 | ) && |
| 671 | git rev-parse refs/remotes/origin/side3 && |
| 672 | test_must_fail git rev-parse refs/remotes/origin/side2 |
| 673 | ) |
Björn Gustavsson | e2d41c6 | 2009-11-09 21:11:59 +0100 | [diff] [blame] | 674 | ' |
| 675 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 676 | cat >one/expect <<-\EOF |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 677 | apis/main |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 678 | apis/side |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 679 | manduca/main |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 680 | manduca/side |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 681 | megaloprepus/main |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 682 | megaloprepus/side |
| 683 | EOF |
| 684 | |
| 685 | test_expect_success 'update default' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 686 | ( |
| 687 | cd one && |
| 688 | for b in $(git branch -r) |
| 689 | do |
Jeff King | e6821d0 | 2015-03-25 01:29:52 -0400 | [diff] [blame] | 690 | git branch -r -d $b || exit 1 |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 691 | done && |
| 692 | git config remote.drosophila.skipDefaultUpdate true && |
| 693 | git remote update default && |
| 694 | git branch -r >output && |
| 695 | test_cmp expect output |
| 696 | ) |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 697 | ' |
| 698 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 699 | cat >one/expect <<\EOF |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 700 | drosophila/another |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 701 | drosophila/main |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 702 | drosophila/side |
| 703 | EOF |
| 704 | |
| 705 | test_expect_success 'update default (overridden, with funny whitespace)' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 706 | ( |
| 707 | cd one && |
| 708 | for b in $(git branch -r) |
| 709 | do |
Jeff King | e6821d0 | 2015-03-25 01:29:52 -0400 | [diff] [blame] | 710 | git branch -r -d $b || exit 1 |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 711 | done && |
| 712 | git config remotes.default "$(printf "\t drosophila \n")" && |
| 713 | git remote update default && |
| 714 | git branch -r >output && |
| 715 | test_cmp expect output |
| 716 | ) |
Johannes Schindelin | 84521ed | 2008-03-04 11:23:53 +0000 | [diff] [blame] | 717 | ' |
| 718 | |
Björn Gustavsson | 4f2e842 | 2009-12-31 10:43:17 +0100 | [diff] [blame] | 719 | test_expect_success 'update (with remotes.default defined)' ' |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 720 | ( |
| 721 | cd one && |
| 722 | for b in $(git branch -r) |
| 723 | do |
Jeff King | e6821d0 | 2015-03-25 01:29:52 -0400 | [diff] [blame] | 724 | git branch -r -d $b || exit 1 |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 725 | done && |
| 726 | git config remotes.default "drosophila" && |
| 727 | git remote update && |
| 728 | git branch -r >output && |
| 729 | test_cmp expect output |
| 730 | ) |
Björn Gustavsson | 4f2e842 | 2009-12-31 10:43:17 +0100 | [diff] [blame] | 731 | ' |
| 732 | |
Johannes Schindelin | 740fdd2 | 2008-03-19 00:27:42 +0000 | [diff] [blame] | 733 | test_expect_success '"remote show" does not show symbolic refs' ' |
Johannes Schindelin | 740fdd2 | 2008-03-19 00:27:42 +0000 | [diff] [blame] | 734 | git clone one three && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 735 | ( |
| 736 | cd three && |
| 737 | git remote show origin >output && |
| 738 | ! grep "^ *HEAD$" < output && |
| 739 | ! grep -i stale < output |
| 740 | ) |
Johannes Schindelin | 740fdd2 | 2008-03-19 00:27:42 +0000 | [diff] [blame] | 741 | ' |
| 742 | |
Jonas Fonseca | 24b6177 | 2008-04-13 11:56:54 +0200 | [diff] [blame] | 743 | test_expect_success 'reject adding remote with an invalid name' ' |
Stephan Beyer | d492b31 | 2008-07-12 17:47:52 +0200 | [diff] [blame] | 744 | test_must_fail git remote add some:url desired-name |
Jonas Fonseca | 24b6177 | 2008-04-13 11:56:54 +0200 | [diff] [blame] | 745 | ' |
| 746 | |
Miklos Vajna | bf98421 | 2008-11-03 19:26:18 +0100 | [diff] [blame] | 747 | # The first three test if the tracking branches are properly renamed, |
| 748 | # the last two ones check if the config is updated. |
| 749 | |
| 750 | test_expect_success 'rename a remote' ' |
Bert Wesarg | b3fd6cb | 2020-02-01 10:34:09 +0100 | [diff] [blame] | 751 | test_config_global remote.pushDefault origin && |
Miklos Vajna | bf98421 | 2008-11-03 19:26:18 +0100 | [diff] [blame] | 752 | git clone one four && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 753 | ( |
| 754 | cd four && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 755 | git config branch.main.pushRemote origin && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 756 | git remote rename origin upstream && |
Ævar Arnfjörð Bjarmason | 0f1da60 | 2021-02-25 02:21:17 +0100 | [diff] [blame] | 757 | grep "pushRemote" .git/config && |
Michael Haggerty | 2eb7a0e | 2017-01-06 17:22:23 +0100 | [diff] [blame] | 758 | test -z "$(git for-each-ref refs/remotes/origin)" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 759 | test "$(git symbolic-ref refs/remotes/upstream/HEAD)" = "refs/remotes/upstream/main" && |
| 760 | test "$(git rev-parse upstream/main)" = "$(git rev-parse main)" && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 761 | test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/remotes/upstream/*" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 762 | test "$(git config branch.main.remote)" = "upstream" && |
| 763 | test "$(git config branch.main.pushRemote)" = "upstream" && |
Bert Wesarg | b3fd6cb | 2020-02-01 10:34:09 +0100 | [diff] [blame] | 764 | test "$(git config --global remote.pushDefault)" = "origin" |
| 765 | ) |
| 766 | ' |
| 767 | |
| 768 | test_expect_success 'rename a remote renames repo remote.pushDefault' ' |
| 769 | git clone one four.1 && |
| 770 | ( |
| 771 | cd four.1 && |
| 772 | git config remote.pushDefault origin && |
| 773 | git remote rename origin upstream && |
Ævar Arnfjörð Bjarmason | 0f1da60 | 2021-02-25 02:21:17 +0100 | [diff] [blame] | 774 | grep pushDefault .git/config && |
Bert Wesarg | b3fd6cb | 2020-02-01 10:34:09 +0100 | [diff] [blame] | 775 | test "$(git config --local remote.pushDefault)" = "upstream" |
| 776 | ) |
| 777 | ' |
| 778 | |
| 779 | test_expect_success 'rename a remote renames repo remote.pushDefault but ignores global' ' |
| 780 | test_config_global remote.pushDefault other && |
| 781 | git clone one four.2 && |
| 782 | ( |
| 783 | cd four.2 && |
| 784 | git config remote.pushDefault origin && |
| 785 | git remote rename origin upstream && |
| 786 | test "$(git config --global remote.pushDefault)" = "other" && |
| 787 | test "$(git config --local remote.pushDefault)" = "upstream" |
| 788 | ) |
| 789 | ' |
| 790 | |
| 791 | test_expect_success 'rename a remote renames repo remote.pushDefault but keeps global' ' |
| 792 | test_config_global remote.pushDefault origin && |
| 793 | git clone one four.3 && |
| 794 | ( |
| 795 | cd four.3 && |
| 796 | git config remote.pushDefault origin && |
| 797 | git remote rename origin upstream && |
| 798 | test "$(git config --global remote.pushDefault)" = "origin" && |
| 799 | test "$(git config --local remote.pushDefault)" = "upstream" |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 800 | ) |
Miklos Vajna | bf98421 | 2008-11-03 19:26:18 +0100 | [diff] [blame] | 801 | ' |
Miklos Vajna | 1dd1239 | 2008-11-10 21:43:01 +0100 | [diff] [blame] | 802 | |
Martin von Zweigbergk | 28f555f | 2011-09-01 20:50:33 -0400 | [diff] [blame] | 803 | test_expect_success 'rename does not update a non-default fetch refspec' ' |
Martin von Zweigbergk | 28f555f | 2011-09-01 20:50:33 -0400 | [diff] [blame] | 804 | git clone one four.one && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 805 | ( |
| 806 | cd four.one && |
| 807 | git config remote.origin.fetch +refs/heads/*:refs/heads/origin/* && |
| 808 | git remote rename origin upstream && |
| 809 | test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/heads/origin/*" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 810 | git rev-parse -q origin/main |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 811 | ) |
Martin von Zweigbergk | 28f555f | 2011-09-01 20:50:33 -0400 | [diff] [blame] | 812 | ' |
| 813 | |
| 814 | test_expect_success 'rename a remote with name part of fetch spec' ' |
Martin von Zweigbergk | 28f555f | 2011-09-01 20:50:33 -0400 | [diff] [blame] | 815 | git clone one four.two && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 816 | ( |
| 817 | cd four.two && |
| 818 | git remote rename origin remote && |
| 819 | git remote rename remote upstream && |
| 820 | test "$(git config remote.upstream.fetch)" = "+refs/heads/*:refs/remotes/upstream/*" |
| 821 | ) |
Martin von Zweigbergk | 28f555f | 2011-09-01 20:50:33 -0400 | [diff] [blame] | 822 | ' |
| 823 | |
Martin von Zweigbergk | 60e5eee | 2011-09-01 20:50:34 -0400 | [diff] [blame] | 824 | test_expect_success 'rename a remote with name prefix of other remote' ' |
Martin von Zweigbergk | 60e5eee | 2011-09-01 20:50:34 -0400 | [diff] [blame] | 825 | git clone one four.three && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 826 | ( |
| 827 | cd four.three && |
| 828 | git remote add o git://example.com/repo.git && |
| 829 | git remote rename o upstream && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 830 | test "$(git rev-parse origin/main)" = "$(git rev-parse main)" |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 831 | ) |
Martin von Zweigbergk | 60e5eee | 2011-09-01 20:50:34 -0400 | [diff] [blame] | 832 | ' |
| 833 | |
Johannes Schindelin | e459b07 | 2017-01-19 22:20:02 +0100 | [diff] [blame] | 834 | test_expect_success 'rename succeeds with existing remote.<target>.prune' ' |
Johannes Schindelin | af5bacf | 2017-01-19 22:19:58 +0100 | [diff] [blame] | 835 | git clone one four.four && |
| 836 | test_when_finished git config --global --unset remote.upstream.prune && |
| 837 | git config --global remote.upstream.prune true && |
| 838 | git -C four.four remote rename origin upstream |
| 839 | ' |
| 840 | |
Bert Wesarg | 923d4a5 | 2020-01-27 08:04:30 +0100 | [diff] [blame] | 841 | test_expect_success 'remove a remote' ' |
Bert Wesarg | b3fd6cb | 2020-02-01 10:34:09 +0100 | [diff] [blame] | 842 | test_config_global remote.pushDefault origin && |
Bert Wesarg | 923d4a5 | 2020-01-27 08:04:30 +0100 | [diff] [blame] | 843 | git clone one four.five && |
| 844 | ( |
| 845 | cd four.five && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 846 | git config branch.main.pushRemote origin && |
Bert Wesarg | 923d4a5 | 2020-01-27 08:04:30 +0100 | [diff] [blame] | 847 | git remote remove origin && |
| 848 | test -z "$(git for-each-ref refs/remotes/origin)" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 849 | test_must_fail git config branch.main.remote && |
| 850 | test_must_fail git config branch.main.pushRemote && |
Bert Wesarg | b3fd6cb | 2020-02-01 10:34:09 +0100 | [diff] [blame] | 851 | test "$(git config --global remote.pushDefault)" = "origin" |
| 852 | ) |
| 853 | ' |
| 854 | |
| 855 | test_expect_success 'remove a remote removes repo remote.pushDefault' ' |
| 856 | git clone one four.five.1 && |
| 857 | ( |
| 858 | cd four.five.1 && |
| 859 | git config remote.pushDefault origin && |
| 860 | git remote remove origin && |
| 861 | test_must_fail git config --local remote.pushDefault |
| 862 | ) |
| 863 | ' |
| 864 | |
| 865 | test_expect_success 'remove a remote removes repo remote.pushDefault but ignores global' ' |
| 866 | test_config_global remote.pushDefault other && |
| 867 | git clone one four.five.2 && |
| 868 | ( |
| 869 | cd four.five.2 && |
| 870 | git config remote.pushDefault origin && |
| 871 | git remote remove origin && |
| 872 | test "$(git config --global remote.pushDefault)" = "other" && |
| 873 | test_must_fail git config --local remote.pushDefault |
| 874 | ) |
| 875 | ' |
| 876 | |
| 877 | test_expect_success 'remove a remote removes repo remote.pushDefault but keeps global' ' |
| 878 | test_config_global remote.pushDefault origin && |
| 879 | git clone one four.five.3 && |
| 880 | ( |
| 881 | cd four.five.3 && |
| 882 | git config remote.pushDefault origin && |
| 883 | git remote remove origin && |
| 884 | test "$(git config --global remote.pushDefault)" = "origin" && |
| 885 | test_must_fail git config --local remote.pushDefault |
Bert Wesarg | 923d4a5 | 2020-01-27 08:04:30 +0100 | [diff] [blame] | 886 | ) |
| 887 | ' |
| 888 | |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 889 | cat >remotes_origin <<EOF |
Miklos Vajna | 1dd1239 | 2008-11-10 21:43:01 +0100 | [diff] [blame] | 890 | URL: $(pwd)/one |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 891 | Push: refs/heads/main:refs/heads/upstream |
Ramkumar Ramachandra | f0f249d | 2013-06-22 13:28:18 +0530 | [diff] [blame] | 892 | Push: refs/heads/next:refs/heads/upstream2 |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 893 | Pull: refs/heads/main:refs/heads/origin |
Ramkumar Ramachandra | f0f249d | 2013-06-22 13:28:18 +0530 | [diff] [blame] | 894 | Pull: refs/heads/next:refs/heads/origin2 |
Miklos Vajna | 1dd1239 | 2008-11-10 21:43:01 +0100 | [diff] [blame] | 895 | EOF |
| 896 | |
| 897 | test_expect_success 'migrate a remote from named file in $GIT_DIR/remotes' ' |
| 898 | git clone one five && |
| 899 | origin_url=$(pwd)/one && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 900 | ( |
| 901 | cd five && |
| 902 | git remote remove origin && |
| 903 | mkdir -p .git/remotes && |
| 904 | cat ../remotes_origin >.git/remotes/origin && |
| 905 | git remote rename origin origin && |
Ramkumar Ramachandra | fe3c195 | 2013-06-22 13:28:10 +0530 | [diff] [blame] | 906 | test_path_is_missing .git/remotes/origin && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 907 | test "$(git config remote.origin.url)" = "$origin_url" && |
Ramkumar Ramachandra | f0f249d | 2013-06-22 13:28:18 +0530 | [diff] [blame] | 908 | cat >push_expected <<-\EOF && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 909 | refs/heads/main:refs/heads/upstream |
Ramkumar Ramachandra | f0f249d | 2013-06-22 13:28:18 +0530 | [diff] [blame] | 910 | refs/heads/next:refs/heads/upstream2 |
| 911 | EOF |
| 912 | cat >fetch_expected <<-\EOF && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 913 | refs/heads/main:refs/heads/origin |
Ramkumar Ramachandra | f0f249d | 2013-06-22 13:28:18 +0530 | [diff] [blame] | 914 | refs/heads/next:refs/heads/origin2 |
| 915 | EOF |
| 916 | git config --get-all remote.origin.push >push_actual && |
| 917 | git config --get-all remote.origin.fetch >fetch_actual && |
| 918 | test_cmp push_expected push_actual && |
| 919 | test_cmp fetch_expected fetch_actual |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 920 | ) |
Miklos Vajna | 1dd1239 | 2008-11-10 21:43:01 +0100 | [diff] [blame] | 921 | ' |
| 922 | |
| 923 | test_expect_success 'migrate a remote from named file in $GIT_DIR/branches' ' |
| 924 | git clone one six && |
| 925 | origin_url=$(pwd)/one && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 926 | ( |
| 927 | cd six && |
| 928 | git remote rm origin && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 929 | echo "$origin_url#main" >.git/branches/origin && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 930 | git remote rename origin origin && |
Ramkumar Ramachandra | fe3c195 | 2013-06-22 13:28:10 +0530 | [diff] [blame] | 931 | test_path_is_missing .git/branches/origin && |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 932 | test "$(git config remote.origin.url)" = "$origin_url" && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 933 | test "$(git config remote.origin.fetch)" = "refs/heads/main:refs/heads/origin" && |
| 934 | test "$(git config remote.origin.push)" = "HEAD:refs/heads/main" |
Ramkumar Ramachandra | 9b9439a | 2013-06-22 13:28:08 +0530 | [diff] [blame] | 935 | ) |
Miklos Vajna | 1dd1239 | 2008-11-10 21:43:01 +0100 | [diff] [blame] | 936 | ' |
| 937 | |
Ramkumar Ramachandra | 1f9a5e9 | 2013-06-22 13:28:13 +0530 | [diff] [blame] | 938 | test_expect_success 'migrate a remote from named file in $GIT_DIR/branches (2)' ' |
Junio C Hamano | f8948e2 | 2009-02-08 23:27:10 -0800 | [diff] [blame] | 939 | git clone one seven && |
| 940 | ( |
Ramkumar Ramachandra | 1f9a5e9 | 2013-06-22 13:28:13 +0530 | [diff] [blame] | 941 | cd seven && |
| 942 | git remote rm origin && |
| 943 | echo "quux#foom" > .git/branches/origin && |
| 944 | git remote rename origin origin && |
| 945 | test_path_is_missing .git/branches/origin && |
| 946 | test "$(git config remote.origin.url)" = "quux" && |
Eric Sunshine | 51b8547 | 2018-07-01 20:24:01 -0400 | [diff] [blame] | 947 | test "$(git config remote.origin.fetch)" = "refs/heads/foom:refs/heads/origin" && |
Ramkumar Ramachandra | 1f9a5e9 | 2013-06-22 13:28:13 +0530 | [diff] [blame] | 948 | test "$(git config remote.origin.push)" = "HEAD:refs/heads/foom" |
| 949 | ) |
| 950 | ' |
| 951 | |
| 952 | test_expect_success 'remote prune to cause a dangling symref' ' |
| 953 | git clone one eight && |
| 954 | ( |
Junio C Hamano | f8948e2 | 2009-02-08 23:27:10 -0800 | [diff] [blame] | 955 | cd one && |
| 956 | git checkout side2 && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 957 | git branch -D main |
Junio C Hamano | f8948e2 | 2009-02-08 23:27:10 -0800 | [diff] [blame] | 958 | ) && |
| 959 | ( |
Ramkumar Ramachandra | 1f9a5e9 | 2013-06-22 13:28:13 +0530 | [diff] [blame] | 960 | cd eight && |
Junio C Hamano | f8948e2 | 2009-02-08 23:27:10 -0800 | [diff] [blame] | 961 | git remote prune origin |
Junio C Hamano | e01de1c | 2010-03-15 22:12:55 -0700 | [diff] [blame] | 962 | ) >err 2>&1 && |
Jiang Xin | f7dc6a9 | 2012-08-27 13:36:54 +0800 | [diff] [blame] | 963 | test_i18ngrep "has become dangling" err && |
Junio C Hamano | f8948e2 | 2009-02-08 23:27:10 -0800 | [diff] [blame] | 964 | |
Junio C Hamano | e01de1c | 2010-03-15 22:12:55 -0700 | [diff] [blame] | 965 | : And the dangling symref will not cause other annoying errors && |
Junio C Hamano | f8948e2 | 2009-02-08 23:27:10 -0800 | [diff] [blame] | 966 | ( |
Ramkumar Ramachandra | 1f9a5e9 | 2013-06-22 13:28:13 +0530 | [diff] [blame] | 967 | cd eight && |
Junio C Hamano | f8948e2 | 2009-02-08 23:27:10 -0800 | [diff] [blame] | 968 | git branch -a |
| 969 | ) 2>err && |
Junio C Hamano | e01de1c | 2010-03-15 22:12:55 -0700 | [diff] [blame] | 970 | ! grep "points nowhere" err && |
Junio C Hamano | 057e713 | 2009-02-08 23:52:01 -0800 | [diff] [blame] | 971 | ( |
Ramkumar Ramachandra | 1f9a5e9 | 2013-06-22 13:28:13 +0530 | [diff] [blame] | 972 | cd eight && |
Junio C Hamano | 057e713 | 2009-02-08 23:52:01 -0800 | [diff] [blame] | 973 | test_must_fail git branch nomore origin |
| 974 | ) 2>err && |
Nguyễn Thái Ngọc Duy | 661558f | 2018-07-21 09:49:35 +0200 | [diff] [blame] | 975 | test_i18ngrep "dangling symref" err |
Junio C Hamano | f8948e2 | 2009-02-08 23:27:10 -0800 | [diff] [blame] | 976 | ' |
| 977 | |
Clemens Buchacher | 6a01554 | 2009-05-27 22:13:43 +0200 | [diff] [blame] | 978 | test_expect_success 'show empty remote' ' |
Clemens Buchacher | 6a01554 | 2009-05-27 22:13:43 +0200 | [diff] [blame] | 979 | test_create_repo empty && |
| 980 | git clone empty empty-clone && |
| 981 | ( |
| 982 | cd empty-clone && |
| 983 | git remote show origin |
| 984 | ) |
| 985 | ' |
| 986 | |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 987 | test_expect_success 'remote set-branches requires a remote' ' |
| 988 | test_must_fail git remote set-branches && |
| 989 | test_must_fail git remote set-branches --add |
| 990 | ' |
| 991 | |
| 992 | test_expect_success 'remote set-branches' ' |
| 993 | echo "+refs/heads/*:refs/remotes/scratch/*" >expect.initial && |
| 994 | sort <<-\EOF >expect.add && |
| 995 | +refs/heads/*:refs/remotes/scratch/* |
| 996 | +refs/heads/other:refs/remotes/scratch/other |
| 997 | EOF |
| 998 | sort <<-\EOF >expect.replace && |
| 999 | +refs/heads/maint:refs/remotes/scratch/maint |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1000 | +refs/heads/main:refs/remotes/scratch/main |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1001 | +refs/heads/next:refs/remotes/scratch/next |
| 1002 | EOF |
| 1003 | sort <<-\EOF >expect.add-two && |
| 1004 | +refs/heads/maint:refs/remotes/scratch/maint |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1005 | +refs/heads/main:refs/remotes/scratch/main |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1006 | +refs/heads/next:refs/remotes/scratch/next |
Johannes Schindelin | 6dca5db | 2020-06-25 12:18:59 +0000 | [diff] [blame] | 1007 | +refs/heads/seen:refs/remotes/scratch/seen |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1008 | +refs/heads/t/topic:refs/remotes/scratch/t/topic |
| 1009 | EOF |
| 1010 | sort <<-\EOF >expect.setup-ffonly && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1011 | refs/heads/main:refs/remotes/scratch/main |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1012 | +refs/heads/next:refs/remotes/scratch/next |
| 1013 | EOF |
| 1014 | sort <<-\EOF >expect.respect-ffonly && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1015 | refs/heads/main:refs/remotes/scratch/main |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1016 | +refs/heads/next:refs/remotes/scratch/next |
Johannes Schindelin | 6dca5db | 2020-06-25 12:18:59 +0000 | [diff] [blame] | 1017 | +refs/heads/seen:refs/remotes/scratch/seen |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1018 | EOF |
| 1019 | |
| 1020 | git clone .git/ setbranches && |
| 1021 | ( |
| 1022 | cd setbranches && |
| 1023 | git remote rename origin scratch && |
| 1024 | git config --get-all remote.scratch.fetch >config-result && |
| 1025 | sort <config-result >../actual.initial && |
| 1026 | |
| 1027 | git remote set-branches scratch --add other && |
| 1028 | git config --get-all remote.scratch.fetch >config-result && |
| 1029 | sort <config-result >../actual.add && |
| 1030 | |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1031 | git remote set-branches scratch maint main next && |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1032 | git config --get-all remote.scratch.fetch >config-result && |
| 1033 | sort <config-result >../actual.replace && |
| 1034 | |
Johannes Schindelin | 6dca5db | 2020-06-25 12:18:59 +0000 | [diff] [blame] | 1035 | git remote set-branches --add scratch seen t/topic && |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1036 | git config --get-all remote.scratch.fetch >config-result && |
| 1037 | sort <config-result >../actual.add-two && |
| 1038 | |
| 1039 | git config --unset-all remote.scratch.fetch && |
| 1040 | git config remote.scratch.fetch \ |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1041 | refs/heads/main:refs/remotes/scratch/main && |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1042 | git config --add remote.scratch.fetch \ |
| 1043 | +refs/heads/next:refs/remotes/scratch/next && |
| 1044 | git config --get-all remote.scratch.fetch >config-result && |
| 1045 | sort <config-result >../actual.setup-ffonly && |
| 1046 | |
Johannes Schindelin | 6dca5db | 2020-06-25 12:18:59 +0000 | [diff] [blame] | 1047 | git remote set-branches --add scratch seen && |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1048 | git config --get-all remote.scratch.fetch >config-result && |
| 1049 | sort <config-result >../actual.respect-ffonly |
| 1050 | ) && |
| 1051 | test_cmp expect.initial actual.initial && |
| 1052 | test_cmp expect.add actual.add && |
| 1053 | test_cmp expect.replace actual.replace && |
| 1054 | test_cmp expect.add-two actual.add-two && |
| 1055 | test_cmp expect.setup-ffonly actual.setup-ffonly && |
| 1056 | test_cmp expect.respect-ffonly actual.respect-ffonly |
| 1057 | ' |
| 1058 | |
| 1059 | test_expect_success 'remote set-branches with --mirror' ' |
| 1060 | echo "+refs/*:refs/*" >expect.initial && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1061 | echo "+refs/heads/main:refs/heads/main" >expect.replace && |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1062 | git clone --mirror .git/ setbranches-mirror && |
| 1063 | ( |
| 1064 | cd setbranches-mirror && |
| 1065 | git remote rename origin scratch && |
| 1066 | git config --get-all remote.scratch.fetch >../actual.initial && |
| 1067 | |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1068 | git remote set-branches scratch heads/main && |
Jonathan Nieder | 3d8b694 | 2010-05-19 13:38:50 -0500 | [diff] [blame] | 1069 | git config --get-all remote.scratch.fetch >../actual.replace |
| 1070 | ) && |
| 1071 | test_cmp expect.initial actual.initial && |
| 1072 | test_cmp expect.replace actual.replace |
| 1073 | ' |
| 1074 | |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1075 | test_expect_success 'new remote' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1076 | git remote add someremote foo && |
| 1077 | echo foo >expect && |
| 1078 | git config --get-all remote.someremote.url >actual && |
| 1079 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1080 | ' |
Junio C Hamano | 057e713 | 2009-02-08 23:52:01 -0800 | [diff] [blame] | 1081 | |
Ben Boeckel | 96f78d3 | 2015-09-15 21:53:47 -0400 | [diff] [blame] | 1082 | get_url_test () { |
| 1083 | cat >expect && |
| 1084 | git remote get-url "$@" >actual && |
| 1085 | test_cmp expect actual |
| 1086 | } |
| 1087 | |
| 1088 | test_expect_success 'get-url on new remote' ' |
| 1089 | echo foo | get_url_test someremote && |
| 1090 | echo foo | get_url_test --all someremote && |
| 1091 | echo foo | get_url_test --push someremote && |
| 1092 | echo foo | get_url_test --push --all someremote |
| 1093 | ' |
| 1094 | |
Patrick Steinhardt | 45ebdcc | 2016-02-22 12:23:28 +0100 | [diff] [blame] | 1095 | test_expect_success 'remote set-url with locked config' ' |
| 1096 | test_when_finished "rm -f .git/config.lock" && |
| 1097 | git config --get-all remote.someremote.url >expect && |
| 1098 | >.git/config.lock && |
| 1099 | test_must_fail git remote set-url someremote baz && |
| 1100 | git config --get-all remote.someremote.url >actual && |
| 1101 | cmp expect actual |
| 1102 | ' |
| 1103 | |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1104 | test_expect_success 'remote set-url bar' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1105 | git remote set-url someremote bar && |
| 1106 | echo bar >expect && |
| 1107 | git config --get-all remote.someremote.url >actual && |
| 1108 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1109 | ' |
| 1110 | |
| 1111 | test_expect_success 'remote set-url baz bar' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1112 | git remote set-url someremote baz bar && |
| 1113 | echo baz >expect && |
| 1114 | git config --get-all remote.someremote.url >actual && |
| 1115 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1116 | ' |
| 1117 | |
| 1118 | test_expect_success 'remote set-url zot bar' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1119 | test_must_fail git remote set-url someremote zot bar && |
| 1120 | echo baz >expect && |
| 1121 | git config --get-all remote.someremote.url >actual && |
| 1122 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1123 | ' |
| 1124 | |
| 1125 | test_expect_success 'remote set-url --push zot baz' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1126 | test_must_fail git remote set-url --push someremote zot baz && |
| 1127 | echo "YYY" >expect && |
| 1128 | echo baz >>expect && |
| 1129 | test_must_fail git config --get-all remote.someremote.pushurl >actual && |
| 1130 | echo "YYY" >>actual && |
| 1131 | git config --get-all remote.someremote.url >>actual && |
| 1132 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1133 | ' |
| 1134 | |
| 1135 | test_expect_success 'remote set-url --push zot' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1136 | git remote set-url --push someremote zot && |
| 1137 | echo zot >expect && |
| 1138 | echo "YYY" >>expect && |
| 1139 | echo baz >>expect && |
| 1140 | git config --get-all remote.someremote.pushurl >actual && |
| 1141 | echo "YYY" >>actual && |
| 1142 | git config --get-all remote.someremote.url >>actual && |
| 1143 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1144 | ' |
| 1145 | |
Ben Boeckel | 96f78d3 | 2015-09-15 21:53:47 -0400 | [diff] [blame] | 1146 | test_expect_success 'get-url with different urls' ' |
| 1147 | echo baz | get_url_test someremote && |
| 1148 | echo baz | get_url_test --all someremote && |
| 1149 | echo zot | get_url_test --push someremote && |
| 1150 | echo zot | get_url_test --push --all someremote |
| 1151 | ' |
| 1152 | |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1153 | test_expect_success 'remote set-url --push qux zot' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1154 | git remote set-url --push someremote qux zot && |
| 1155 | echo qux >expect && |
| 1156 | echo "YYY" >>expect && |
| 1157 | echo baz >>expect && |
| 1158 | git config --get-all remote.someremote.pushurl >actual && |
| 1159 | echo "YYY" >>actual && |
| 1160 | git config --get-all remote.someremote.url >>actual && |
| 1161 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1162 | ' |
| 1163 | |
| 1164 | test_expect_success 'remote set-url --push foo qu+x' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1165 | git remote set-url --push someremote foo qu+x && |
| 1166 | echo foo >expect && |
| 1167 | echo "YYY" >>expect && |
| 1168 | echo baz >>expect && |
| 1169 | git config --get-all remote.someremote.pushurl >actual && |
| 1170 | echo "YYY" >>actual && |
| 1171 | git config --get-all remote.someremote.url >>actual && |
| 1172 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1173 | ' |
| 1174 | |
| 1175 | test_expect_success 'remote set-url --push --add aaa' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1176 | git remote set-url --push --add someremote aaa && |
| 1177 | echo foo >expect && |
| 1178 | echo aaa >>expect && |
| 1179 | echo "YYY" >>expect && |
| 1180 | echo baz >>expect && |
| 1181 | git config --get-all remote.someremote.pushurl >actual && |
| 1182 | echo "YYY" >>actual && |
| 1183 | git config --get-all remote.someremote.url >>actual && |
| 1184 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1185 | ' |
| 1186 | |
Ben Boeckel | 96f78d3 | 2015-09-15 21:53:47 -0400 | [diff] [blame] | 1187 | test_expect_success 'get-url on multi push remote' ' |
| 1188 | echo foo | get_url_test --push someremote && |
| 1189 | get_url_test --push --all someremote <<-\EOF |
| 1190 | foo |
| 1191 | aaa |
| 1192 | EOF |
| 1193 | ' |
| 1194 | |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1195 | test_expect_success 'remote set-url --push bar aaa' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1196 | git remote set-url --push someremote bar aaa && |
| 1197 | echo foo >expect && |
| 1198 | echo bar >>expect && |
| 1199 | echo "YYY" >>expect && |
| 1200 | echo baz >>expect && |
| 1201 | git config --get-all remote.someremote.pushurl >actual && |
| 1202 | echo "YYY" >>actual && |
| 1203 | git config --get-all remote.someremote.url >>actual && |
| 1204 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1205 | ' |
| 1206 | |
| 1207 | test_expect_success 'remote set-url --push --delete bar' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1208 | git remote set-url --push --delete someremote bar && |
| 1209 | echo foo >expect && |
| 1210 | echo "YYY" >>expect && |
| 1211 | echo baz >>expect && |
| 1212 | git config --get-all remote.someremote.pushurl >actual && |
| 1213 | echo "YYY" >>actual && |
| 1214 | git config --get-all remote.someremote.url >>actual && |
| 1215 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1216 | ' |
| 1217 | |
| 1218 | test_expect_success 'remote set-url --push --delete foo' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1219 | git remote set-url --push --delete someremote foo && |
| 1220 | echo "YYY" >expect && |
| 1221 | echo baz >>expect && |
| 1222 | test_must_fail git config --get-all remote.someremote.pushurl >actual && |
| 1223 | echo "YYY" >>actual && |
| 1224 | git config --get-all remote.someremote.url >>actual && |
| 1225 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1226 | ' |
| 1227 | |
| 1228 | test_expect_success 'remote set-url --add bbb' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1229 | git remote set-url --add someremote bbb && |
| 1230 | echo "YYY" >expect && |
| 1231 | echo baz >>expect && |
| 1232 | echo bbb >>expect && |
| 1233 | test_must_fail git config --get-all remote.someremote.pushurl >actual && |
| 1234 | echo "YYY" >>actual && |
| 1235 | git config --get-all remote.someremote.url >>actual && |
| 1236 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1237 | ' |
| 1238 | |
Ben Boeckel | 96f78d3 | 2015-09-15 21:53:47 -0400 | [diff] [blame] | 1239 | test_expect_success 'get-url on multi fetch remote' ' |
| 1240 | echo baz | get_url_test someremote && |
| 1241 | get_url_test --all someremote <<-\EOF |
| 1242 | baz |
| 1243 | bbb |
| 1244 | EOF |
| 1245 | ' |
| 1246 | |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1247 | test_expect_success 'remote set-url --delete .*' ' |
Brandon Casey | 49de47c | 2010-03-19 19:10:20 -0500 | [diff] [blame] | 1248 | test_must_fail git remote set-url --delete someremote .\* && |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1249 | echo "YYY" >expect && |
| 1250 | echo baz >>expect && |
| 1251 | echo bbb >>expect && |
| 1252 | test_must_fail git config --get-all remote.someremote.pushurl >actual && |
| 1253 | echo "YYY" >>actual && |
| 1254 | git config --get-all remote.someremote.url >>actual && |
| 1255 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1256 | ' |
| 1257 | |
| 1258 | test_expect_success 'remote set-url --delete bbb' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1259 | git remote set-url --delete someremote bbb && |
| 1260 | echo "YYY" >expect && |
| 1261 | echo baz >>expect && |
| 1262 | test_must_fail git config --get-all remote.someremote.pushurl >actual && |
| 1263 | echo "YYY" >>actual && |
| 1264 | git config --get-all remote.someremote.url >>actual && |
| 1265 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1266 | ' |
| 1267 | |
| 1268 | test_expect_success 'remote set-url --delete baz' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1269 | test_must_fail git remote set-url --delete someremote baz && |
| 1270 | echo "YYY" >expect && |
| 1271 | echo baz >>expect && |
| 1272 | test_must_fail git config --get-all remote.someremote.pushurl >actual && |
| 1273 | echo "YYY" >>actual && |
| 1274 | git config --get-all remote.someremote.url >>actual && |
| 1275 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1276 | ' |
| 1277 | |
| 1278 | test_expect_success 'remote set-url --add ccc' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1279 | git remote set-url --add someremote ccc && |
| 1280 | echo "YYY" >expect && |
| 1281 | echo baz >>expect && |
| 1282 | echo ccc >>expect && |
| 1283 | test_must_fail git config --get-all remote.someremote.pushurl >actual && |
| 1284 | echo "YYY" >>actual && |
| 1285 | git config --get-all remote.someremote.url >>actual && |
| 1286 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1287 | ' |
| 1288 | |
| 1289 | test_expect_success 'remote set-url --delete baz' ' |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1290 | git remote set-url --delete someremote baz && |
| 1291 | echo "YYY" >expect && |
| 1292 | echo ccc >>expect && |
| 1293 | test_must_fail git config --get-all remote.someremote.pushurl >actual && |
| 1294 | echo "YYY" >>actual && |
| 1295 | git config --get-all remote.someremote.url >>actual && |
| 1296 | cmp expect actual |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1297 | ' |
| 1298 | |
Thomas Rast | abf5f87 | 2013-04-24 15:54:35 +0200 | [diff] [blame] | 1299 | test_expect_success 'extra args: setup' ' |
| 1300 | # add a dummy origin so that this does not trigger failure |
| 1301 | git remote add origin . |
| 1302 | ' |
| 1303 | |
| 1304 | test_extra_arg () { |
Thomas Rast | b17dd3f | 2013-04-24 15:54:37 +0200 | [diff] [blame] | 1305 | test_expect_success "extra args: $*" " |
Thomas Rast | abf5f87 | 2013-04-24 15:54:35 +0200 | [diff] [blame] | 1306 | test_must_fail git remote $* bogus_extra_arg 2>actual && |
Vasco Almeida | 1edbaac | 2016-06-17 20:21:07 +0000 | [diff] [blame] | 1307 | test_i18ngrep '^usage:' actual |
Thomas Rast | abf5f87 | 2013-04-24 15:54:35 +0200 | [diff] [blame] | 1308 | " |
| 1309 | } |
| 1310 | |
Thomas Rast | 2d2e3d2 | 2013-04-24 15:54:36 +0200 | [diff] [blame] | 1311 | test_extra_arg add nick url |
Thomas Rast | abf5f87 | 2013-04-24 15:54:35 +0200 | [diff] [blame] | 1312 | test_extra_arg rename origin newname |
| 1313 | test_extra_arg remove origin |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1314 | test_extra_arg set-head origin main |
Thomas Rast | abf5f87 | 2013-04-24 15:54:35 +0200 | [diff] [blame] | 1315 | # set-branches takes any number of args |
Ben Boeckel | 96f78d3 | 2015-09-15 21:53:47 -0400 | [diff] [blame] | 1316 | test_extra_arg get-url origin newurl |
Thomas Rast | abf5f87 | 2013-04-24 15:54:35 +0200 | [diff] [blame] | 1317 | test_extra_arg set-url origin newurl oldurl |
Thomas Rast | b17dd3f | 2013-04-24 15:54:37 +0200 | [diff] [blame] | 1318 | # show takes any number of args |
| 1319 | # prune takes any number of args |
Thomas Rast | abf5f87 | 2013-04-24 15:54:35 +0200 | [diff] [blame] | 1320 | # update takes any number of args |
| 1321 | |
Johannes Schindelin | b90c95d | 2014-12-23 14:25:09 +0100 | [diff] [blame] | 1322 | test_expect_success 'add remote matching the "insteadOf" URL' ' |
| 1323 | git config url.xyz@example.com.insteadOf backup && |
| 1324 | git remote add backup xyz@example.com |
| 1325 | ' |
| 1326 | |
Ævar Arnfjörð Bjarmason | dd8dd30 | 2018-11-13 19:52:43 +0000 | [diff] [blame] | 1327 | test_expect_success 'unqualified <dst> refspec DWIM and advice' ' |
| 1328 | test_when_finished "(cd test && git tag -d some-tag)" && |
| 1329 | ( |
| 1330 | cd test && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1331 | git tag -a -m "Some tag" some-tag main && |
Ævar Arnfjörð Bjarmason | dd8dd30 | 2018-11-13 19:52:43 +0000 | [diff] [blame] | 1332 | for type in commit tag tree blob |
| 1333 | do |
| 1334 | if test "$type" = "blob" |
| 1335 | then |
| 1336 | oid=$(git rev-parse some-tag:file) |
| 1337 | else |
| 1338 | oid=$(git rev-parse some-tag^{$type}) |
| 1339 | fi && |
| 1340 | test_must_fail git push origin $oid:dst 2>err && |
| 1341 | test_i18ngrep "error: The destination you" err && |
| 1342 | test_i18ngrep "hint: Did you mean" err && |
| 1343 | test_must_fail git -c advice.pushUnqualifiedRefName=false \ |
| 1344 | push origin $oid:dst 2>err && |
| 1345 | test_i18ngrep "error: The destination you" err && |
| 1346 | test_i18ngrep ! "hint: Did you mean" err || |
Eric Sunshine | 03949e3 | 2021-12-09 00:11:10 -0500 | [diff] [blame] | 1347 | exit 1 |
| 1348 | done |
Ævar Arnfjörð Bjarmason | dd8dd30 | 2018-11-13 19:52:43 +0000 | [diff] [blame] | 1349 | ) |
| 1350 | ' |
| 1351 | |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1352 | test_expect_success 'refs/remotes/* <src> refspec and unqualified <dst> DWIM and advice' ' |
Ævar Arnfjörð Bjarmason | bf70636 | 2018-11-13 19:52:44 +0000 | [diff] [blame] | 1353 | ( |
| 1354 | cd two && |
Johannes Schindelin | 97b9136 | 2020-12-17 01:07:05 +0000 | [diff] [blame] | 1355 | git tag -a -m "Some tag" my-tag main && |
Ævar Arnfjörð Bjarmason | bf70636 | 2018-11-13 19:52:44 +0000 | [diff] [blame] | 1356 | git update-ref refs/trees/my-head-tree HEAD^{tree} && |
| 1357 | git update-ref refs/blobs/my-file-blob HEAD:file |
| 1358 | ) && |
| 1359 | ( |
| 1360 | cd test && |
| 1361 | git config --add remote.two.fetch "+refs/tags/*:refs/remotes/tags-from-two/*" && |
| 1362 | git config --add remote.two.fetch "+refs/trees/*:refs/remotes/trees-from-two/*" && |
| 1363 | git config --add remote.two.fetch "+refs/blobs/*:refs/remotes/blobs-from-two/*" && |
| 1364 | git fetch --no-tags two && |
| 1365 | |
| 1366 | test_must_fail git push origin refs/remotes/two/another:dst 2>err && |
| 1367 | test_i18ngrep "error: The destination you" err && |
| 1368 | |
| 1369 | test_must_fail git push origin refs/remotes/tags-from-two/my-tag:dst-tag 2>err && |
| 1370 | test_i18ngrep "error: The destination you" err && |
| 1371 | |
| 1372 | test_must_fail git push origin refs/remotes/trees-from-two/my-head-tree:dst-tree 2>err && |
| 1373 | test_i18ngrep "error: The destination you" err && |
| 1374 | |
| 1375 | test_must_fail git push origin refs/remotes/blobs-from-two/my-file-blob:dst-blob 2>err && |
| 1376 | test_i18ngrep "error: The destination you" err |
| 1377 | ) |
| 1378 | ' |
Ævar Arnfjörð Bjarmason | dd8dd30 | 2018-11-13 19:52:43 +0000 | [diff] [blame] | 1379 | |
Ilari Liusvaara | 433f2be | 2010-01-18 19:18:02 +0200 | [diff] [blame] | 1380 | test_done |