3 test_description
='test <branch>@{upstream} syntax'
8 test_expect_success
'setup' '
11 git checkout -b side &&
13 git checkout master &&
18 git branch --track my-side origin/side &&
19 git branch --track local-master master &&
20 git remote add -t master master-only .. &&
21 git fetch master-only &&
22 git branch bad-upstream &&
23 git config branch.bad-upstream.remote master-only &&
24 git config branch.bad-upstream.merge refs/heads/side
32 git rev-parse
--symbolic-full-name "$@")
37 git show
-s --pretty=format
:%s
"$@")
42 test_must_fail git rev-parse
--verify "$@")
45 test_expect_success
'@{upstream} resolves to correct full name' '
46 test refs/remotes/origin/master = "$(full_name @{upstream})"
49 test_expect_success
'@{u} resolves to correct full name' '
50 test refs/remotes/origin/master = "$(full_name @{u})"
53 test_expect_success
'my-side@{upstream} resolves to correct full name' '
54 test refs/remotes/origin/side = "$(full_name my-side@{u})"
57 test_expect_success
'my-side@{u} resolves to correct commit' '
60 (cd clone && git fetch) &&
61 test 2 = "$(commit_subject my-side)" &&
62 test 5 = "$(commit_subject my-side@{u})"
65 test_expect_success
'not-tracking@{u} fails' '
66 test_must_fail full_name non-tracking@{u} &&
67 (cd clone && git checkout --no-track -b non-tracking) &&
68 test_must_fail full_name non-tracking@{u}
71 test_expect_success
'<branch>@{u}@{1} resolves correctly' '
73 (cd clone && git fetch) &&
74 test 5 = $(commit_subject my-side@{u}@{1})
77 test_expect_success
'@{u} without specifying branch fails on a detached HEAD' '
78 git checkout HEAD^0 &&
79 test_must_fail git rev-parse @{u}
82 test_expect_success
'checkout -b new my-side@{u} forks from the same' '
85 git checkout -b new my-side@{u} &&
86 git rev-parse --symbolic-full-name my-side@{u} >expect &&
87 git rev-parse --symbolic-full-name new@{u} >actual &&
88 test_cmp expect actual
92 test_expect_success
'merge my-side@{u} records the correct name' '
95 git checkout master || exit
96 git branch -D new ;# can fail but is ok
97 git branch -t new my-side@{u} &&
98 git merge -s ours new@{u} &&
99 git show -s --pretty=format:%s >actual &&
100 echo "Merge remote-tracking branch ${sq}origin/side${sq}" >expect &&
101 test_cmp expect actual
105 test_expect_success
'branch -d other@{u}' '
106 git checkout -t -b other master &&
107 git branch -d @{u} &&
108 git for-each-ref refs/heads/master >actual &&
110 test_cmp expect actual
113 test_expect_success
'checkout other@{u}' '
114 git branch -f master HEAD &&
115 git checkout -t -b another master &&
117 git symbolic-ref HEAD >actual &&
118 echo refs/heads/master >expect &&
119 test_cmp expect actual
122 test_expect_success
'branch@{u} works when tracking a local branch' '
123 test refs/heads/master = "$(full_name local-master@{u})"
126 test_expect_success
'branch@{u} error message when no upstream' '
127 cat >expect <<-EOF &&
128 error: No upstream configured for branch ${sq}non-tracking${sq}
129 fatal: Needed a single revision
131 error_message non-tracking@{u} 2>actual &&
132 test_i18ncmp expect actual
135 test_expect_success
'@{u} error message when no upstream' '
136 cat >expect <<-EOF &&
137 error: No upstream configured for branch ${sq}master${sq}
138 fatal: Needed a single revision
140 test_must_fail git rev-parse --verify @{u} 2>actual &&
141 test_i18ncmp expect actual
144 test_expect_success
'branch@{u} error message with misspelt branch' '
145 cat >expect <<-EOF &&
146 error: No such branch: ${sq}no-such-branch${sq}
147 fatal: Needed a single revision
149 error_message no-such-branch@{u} 2>actual &&
150 test_i18ncmp expect actual
153 test_expect_success
'@{u} error message when not on a branch' '
154 cat >expect <<-EOF &&
155 error: HEAD does not point to a branch
156 fatal: Needed a single revision
158 git checkout HEAD^0 &&
159 test_must_fail git rev-parse --verify @{u} 2>actual &&
160 test_i18ncmp expect actual
163 test_expect_success
'branch@{u} error message if upstream branch not fetched' '
164 cat >expect <<-EOF &&
165 error: Upstream branch ${sq}refs/heads/side${sq} not stored as a remote-tracking branch
166 fatal: Needed a single revision
168 error_message bad-upstream@{u} 2>actual &&
169 test_i18ncmp expect actual
172 test_expect_success
'pull works when tracking a local branch' '
175 git checkout local-master &&
180 # makes sense if the previous one succeeded
181 test_expect_success
'@{u} works when tracking a local branch' '
182 test refs/heads/master = "$(full_name @{u})"
186 commit 8f489d01d0cc65c3b0f09504ec50b5ed02a70bd5
187 Reflog: master@{0} (C O Mitter <committer@example.com>)
188 Reflog message: branch: Created from HEAD
189 Author: A U Thor <author@example.com>
190 Date: Thu Apr 7 15:15:13 2005 -0700
194 test_expect_success
'log -g other@{u}' '
195 git log -1 -g other@{u} >actual &&
196 test_cmp expect actual
200 commit 8f489d01d0cc65c3b0f09504ec50b5ed02a70bd5
201 Reflog: master@{Thu Apr 7 15:17:13 2005 -0700} (C O Mitter <committer@example.com>)
202 Reflog message: branch: Created from HEAD
203 Author: A U Thor <author@example.com>
204 Date: Thu Apr 7 15:15:13 2005 -0700
209 test_expect_success
'log -g other@{u}@{now}' '
210 git log -1 -g other@{u}@{now} >actual &&
211 test_cmp expect actual