fetch: get the remote branches to merge from the branch properties
[git/jrn.git] / t / t5510-fetch.sh
blobe71581a95dd86949eab8c56d99d11f5f3ca3c3ba
1 #!/bin/sh
2 # Copyright (c) 2006, Junio C Hamano.
4 test_description='Per branch config variables affects "git fetch".
8 . ./test-lib.sh
10 D=`pwd`
12 test_expect_success setup '
13 echo >file original &&
14 git add file &&
15 git commit -a -m original'
17 test_expect_success "clone and setup child repos" '
18 git clone . one &&
19 cd one &&
20 echo >file updated by one &&
21 git commit -a -m "updated by one" &&
22 cd .. &&
23 git clone . two &&
24 cd two &&
25 git repo-config branch.master.remote one &&
27 echo "URL: ../one/.git/"
28 echo "Pull: refs/heads/master:refs/heads/one"
29 } >.git/remotes/one
32 test_expect_success "fetch test" '
33 cd "$D" &&
34 echo >file updated by origin &&
35 git commit -a -m "updated by origin" &&
36 cd two &&
37 git fetch &&
38 test -f .git/refs/heads/one &&
39 mine=`git rev-parse refs/heads/one` &&
40 his=`cd ../one && git rev-parse refs/heads/master` &&
41 test "z$mine" = "z$his"
44 test_done