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
'refs/heads/my-side@{upstream} does not resolve to my-side{upstream}' '
58 test_must_fail full_name refs/heads/my-side@{upstream}
61 test_expect_success
'my-side@{u} resolves to correct commit' '
64 (cd clone && git fetch) &&
65 test 2 = "$(commit_subject my-side)" &&
66 test 5 = "$(commit_subject my-side@{u})"
69 test_expect_success
'not-tracking@{u} fails' '
70 test_must_fail full_name non-tracking@{u} &&
71 (cd clone && git checkout --no-track -b non-tracking) &&
72 test_must_fail full_name non-tracking@{u}
75 test_expect_success
'<branch>@{u}@{1} resolves correctly' '
77 (cd clone && git fetch) &&
78 test 5 = $(commit_subject my-side@{u}@{1})
81 test_expect_success
'@{u} without specifying branch fails on a detached HEAD' '
82 git checkout HEAD^0 &&
83 test_must_fail git rev-parse @{u}
86 test_expect_success
'checkout -b new my-side@{u} forks from the same' '
89 git checkout -b new my-side@{u} &&
90 git rev-parse --symbolic-full-name my-side@{u} >expect &&
91 git rev-parse --symbolic-full-name new@{u} >actual &&
92 test_cmp expect actual
96 test_expect_success
'merge my-side@{u} records the correct name' '
99 git checkout master || exit
100 git branch -D new ;# can fail but is ok
101 git branch -t new my-side@{u} &&
102 git merge -s ours new@{u} &&
103 git show -s --pretty=format:%s >actual &&
104 echo "Merge remote-tracking branch ${sq}origin/side${sq}" >expect &&
105 test_cmp expect actual
109 test_expect_success
'branch -d other@{u}' '
110 git checkout -t -b other master &&
111 git branch -d @{u} &&
112 git for-each-ref refs/heads/master >actual &&
114 test_cmp expect actual
117 test_expect_success
'checkout other@{u}' '
118 git branch -f master HEAD &&
119 git checkout -t -b another master &&
121 git symbolic-ref HEAD >actual &&
122 echo refs/heads/master >expect &&
123 test_cmp expect actual
126 test_expect_success
'branch@{u} works when tracking a local branch' '
127 test refs/heads/master = "$(full_name local-master@{u})"
130 test_expect_success
'branch@{u} error message when no upstream' '
131 cat >expect <<-EOF &&
132 error: No upstream configured for branch ${sq}non-tracking${sq}
133 fatal: Needed a single revision
135 error_message non-tracking@{u} 2>actual &&
136 test_i18ncmp expect actual
139 test_expect_success
'@{u} error message when no upstream' '
140 cat >expect <<-EOF &&
141 error: No upstream configured for branch ${sq}master${sq}
142 fatal: Needed a single revision
144 test_must_fail git rev-parse --verify @{u} 2>actual &&
145 test_i18ncmp expect actual
148 test_expect_success
'branch@{u} error message with misspelt branch' '
149 cat >expect <<-EOF &&
150 error: No such branch: ${sq}no-such-branch${sq}
151 fatal: Needed a single revision
153 error_message no-such-branch@{u} 2>actual &&
154 test_i18ncmp expect actual
157 test_expect_success
'@{u} error message when not on a branch' '
158 cat >expect <<-EOF &&
159 error: HEAD does not point to a branch
160 fatal: Needed a single revision
162 git checkout HEAD^0 &&
163 test_must_fail git rev-parse --verify @{u} 2>actual &&
164 test_i18ncmp expect actual
167 test_expect_success
'branch@{u} error message if upstream branch not fetched' '
168 cat >expect <<-EOF &&
169 error: Upstream branch ${sq}refs/heads/side${sq} not stored as a remote-tracking branch
170 fatal: Needed a single revision
172 error_message bad-upstream@{u} 2>actual &&
173 test_i18ncmp expect actual
176 test_expect_success
'pull works when tracking a local branch' '
179 git checkout local-master &&
184 # makes sense if the previous one succeeded
185 test_expect_success
'@{u} works when tracking a local branch' '
186 test refs/heads/master = "$(full_name @{u})"
190 commit 8f489d01d0cc65c3b0f09504ec50b5ed02a70bd5
191 Reflog: master@{0} (C O Mitter <committer@example.com>)
192 Reflog message: branch: Created from HEAD
193 Author: A U Thor <author@example.com>
194 Date: Thu Apr 7 15:15:13 2005 -0700
198 test_expect_success
'log -g other@{u}' '
199 git log -1 -g other@{u} >actual &&
200 test_cmp expect actual
204 commit 8f489d01d0cc65c3b0f09504ec50b5ed02a70bd5
205 Reflog: master@{Thu Apr 7 15:17:13 2005 -0700} (C O Mitter <committer@example.com>)
206 Reflog message: branch: Created from HEAD
207 Author: A U Thor <author@example.com>
208 Date: Thu Apr 7 15:15:13 2005 -0700
213 test_expect_success
'log -g other@{u}@{now}' '
214 git log -1 -g other@{u}@{now} >actual &&
215 test_cmp expect actual