3 test_description
='git ls-remote'
7 test_expect_success setup
'
11 git commit -m initial &&
13 git show-ref --tags -d | sed -e "s/ / /" >expected.tag &&
15 echo "$(git rev-parse HEAD) HEAD"
16 git show-ref -d | sed -e "s/ / /"
19 git remote add self "$(pwd)/.git"
22 test_expect_success
'ls-remote --tags .git' '
23 git ls-remote --tags .git >actual &&
24 test_cmp expected.tag actual
27 test_expect_success
'ls-remote .git' '
28 git ls-remote .git >actual &&
29 test_cmp expected.all actual
32 test_expect_success
'ls-remote --tags self' '
33 git ls-remote --tags self >actual &&
34 test_cmp expected.tag actual
37 test_expect_success
'ls-remote self' '
38 git ls-remote self >actual &&
39 test_cmp expected.all actual
42 test_expect_success
'dies when no remote specified and no default remotes found' '
43 test_must_fail git ls-remote
46 test_expect_success
'use "origin" when no remote specified' '
48 echo "From $URL" >exp_err &&
50 git remote add origin "$URL" &&
51 git ls-remote 2>actual_err >actual &&
53 test_cmp exp_err actual_err &&
54 test_cmp expected.all actual
57 test_expect_success
'suppress "From <url>" with -q' '
58 git ls-remote -q 2>actual_err &&
59 test_must_fail test_cmp exp_err actual_err
62 test_expect_success
'use branch.<name>.remote if possible' '
64 # Test that we are indeed using branch.<name>.remote, not "origin", even
65 # though the "origin" remote has been set.
68 # setup a new remote to differentiate from "origin"
69 git clone . other.git &&
72 echo "$(git rev-parse HEAD) HEAD"
73 git show-ref | sed -e "s/ / /"
77 echo "From $URL" >exp_err &&
79 git remote add other $URL &&
80 git config branch.master.remote other &&
82 git ls-remote 2>actual_err >actual &&
83 test_cmp exp_err actual_err &&
87 test_expect_success
'confuses pattern as remote when no remote specified' '
89 fatal: '\''refs*master'\'' does not appear to be a git repository
90 fatal: Could not read from remote repository.
92 Please make sure you have the correct access rights
93 and the repository exists.
96 # Do not expect "git ls-remote <pattern>" to work; ls-remote needs
97 # <remote> if you want to feed <pattern>, just like you cannot say
99 # We could just as easily have used "master"; the "*" emphasizes its
101 test_must_fail git ls-remote refs*master >actual 2>&1 &&
105 test_expect_success
'die with non-2 for wrong repository even with --exit-code' '
106 git ls-remote --exit-code ./no-such-repository ;# not &&
108 test $status != 2 && test $status != 0
111 test_expect_success
'Report success even when nothing matches' '
112 git ls-remote other.git "refs/nsn/*" >actual &&
114 test_cmp expect actual
117 test_expect_success
'Report no-match with --exit-code' '
118 test_expect_code 2 git ls-remote --exit-code other.git "refs/nsn/*" >actual &&
120 test_cmp expect actual
123 test_expect_success
'Report match with --exit-code' '
124 git ls-remote --exit-code other.git "refs/tags/*" >actual &&
125 git ls-remote . tags/mark >expect &&
126 test_cmp expect actual
129 for configsection
in transfer uploadpack
131 test_expect_success
"Hide some refs with $configsection.hiderefs" '
132 test_config $configsection.hiderefs refs/tags &&
133 git ls-remote . >actual &&
134 test_unconfig $configsection.hiderefs &&
136 sed -e "/ refs\/tags\//d" >expect &&
137 test_cmp expect actual