summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-08-25 16:00:49 -0700
committerJunio C Hamano <gitster@pobox.com>2011-08-25 16:00:49 -0700
commitb0578c9abe77f2e1c958bf76c620d59be6c2cf65 (patch)
tree0c32b868df06907137a47de6ca88dc652b65e5cf /t
parent3f1c70f717da3c9ec6ae3744593c7f9f3729aad7 (diff)
parente9d4f7405b6ab399ef0ea62a796c646de676555d (diff)
downloadgit-b0578c9abe77f2e1c958bf76c620d59be6c2cf65.tar.gz
Merge branch 'mg/branch-set-upstream-previous'
* mg/branch-set-upstream-previous: branch.c: use the parsed branch name
Diffstat (limited to 't')
-rwxr-xr-xt/t6040-tracking-info.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t6040-tracking-info.sh b/t/t6040-tracking-info.sh
index a9b0ac1efc..19de5b16eb 100755
--- a/t/t6040-tracking-info.sh
+++ b/t/t6040-tracking-info.sh
@@ -110,4 +110,18 @@ test_expect_success '--set-upstream does not change branch' '
grep -q "^refs/heads/master$" actual &&
cmp expect2 actual2
'
+
+test_expect_success '--set-upstream @{-1}' '
+ git checkout from-master &&
+ git checkout from-master2 &&
+ git config branch.from-master2.merge > expect2 &&
+ git branch --set-upstream @{-1} follower &&
+ git config branch.from-master.merge > actual &&
+ git config branch.from-master2.merge > actual2 &&
+ git branch --set-upstream from-master follower &&
+ git config branch.from-master.merge > expect &&
+ test_cmp expect2 actual2 &&
+ test_cmp expect actual
+'
+
test_done