tests: at-combinations: simplify setup
authorFelipe Contreras <felipe.contreras@gmail.com>
Tue, 7 May 2013 21:55:01 +0000 (16:55 -0500)
committerJunio C Hamano <gitster@pobox.com>
Wed, 8 May 2013 04:46:11 +0000 (21:46 -0700)
The test is setting up an upstream branch, but there's a much simpler
way of doing that: git branch -u.

Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1508-at-combinations.sh
index d5d6244178137cddc985ad4fc32ee3e78c7c5746..46e3f166a6cf86fee96f90342cc85b864715488e 100755 (executable)
@@ -31,10 +31,8 @@ test_expect_success 'setup' '
        git checkout -b new-branch &&
        test_commit new-one &&
        test_commit new-two &&
-       git config branch.old-branch.remote . &&
-       git config branch.old-branch.merge refs/heads/master &&
-       git config branch.new-branch.remote . &&
-       git config branch.new-branch.merge refs/heads/upstream-branch
+       git branch -u master old-branch &&
+       git branch -u upstream-branch new-branch
 '
 
 check HEAD new-two