Start the 2.46 cycle
[alt-git.git] / t / t5513-fetch-track.sh
blobc46c4dbaefc729d8f26a65d6c797682f03d4d130
1 #!/bin/sh
3 test_description='fetch follows remote-tracking branches correctly'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
8 test_expect_success setup '
9 >file &&
10 git add . &&
11 test_tick &&
12 git commit -m Initial &&
13 git branch b-0 &&
14 git branch b1 &&
15 git branch b/one &&
16 test_create_repo other &&
18 cd other &&
19 git config remote.origin.url .. &&
20 git config remote.origin.fetch "+refs/heads/b/*:refs/remotes/b/*"
24 test_expect_success fetch '
26 cd other && git fetch origin &&
27 test "$(git for-each-ref --format="%(refname)")" = refs/remotes/b/one
31 test_done