aboutsummaryrefslogtreecommitdiffstats
path: root/t/t5527-fetch-odd-refs.sh
diff options
context:
space:
mode:
authorBence Ferdinandy <bence@ferdinandy.com>2024-11-22 13:28:50 +0100
committerJunio C Hamano <gitster@pobox.com>2024-11-25 11:46:37 +0900
commit3f763ddf28d28fe63963991513c8db4045eabadc (patch)
tree128738e283defd82ac8e3155745988a41c74937c /t/t5527-fetch-odd-refs.sh
parent9963746c841dc786529827b7b6755d0a3e208ad4 (diff)
downloadgit-3f763ddf28d28fe63963991513c8db4045eabadc.tar.gz
fetch: set remote/HEAD if it does not exist
When cloning a repository remote/HEAD is created, but when the user creates a repository with git init, and later adds a remote, remote/HEAD is only created if the user explicitly runs a variant of "remote set-head". Attempt to set remote/HEAD during fetch, if the user does not have it already set. Silently ignore any errors. Signed-off-by: Bence Ferdinandy <bence@ferdinandy.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5527-fetch-odd-refs.sh')
-rwxr-xr-xt/t5527-fetch-odd-refs.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t5527-fetch-odd-refs.sh b/t/t5527-fetch-odd-refs.sh
index 98ece27c6a..d3996af6ee 100755
--- a/t/t5527-fetch-odd-refs.sh
+++ b/t/t5527-fetch-odd-refs.sh
@@ -52,7 +52,8 @@ test_expect_success LONG_REF 'fetch handles extremely long refname' '
long
main
EOF
- git for-each-ref --format="%(subject)" refs/remotes/long >actual &&
+ git for-each-ref --format="%(subject)" refs/remotes/long \
+ --exclude=refs/remotes/long/HEAD >actual &&
test_cmp expect actual
'