Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-09-18 03:21:33 +0400
committerJunio C Hamano <gitster@pobox.com>2013-09-18 08:51:58 +0400
commit5e7dcad771cb873e278a0571b46910d7c32e2f6c (patch)
tree63cf95d948af798a1d6663c2de326ad13ac29b17 /upload-pack.c
parent7171d8c15f919c760d52f814a0aee1b1253385b1 (diff)
upload-pack: send non-HEAD symbolic refs
With the same mechanism as used to tell where "HEAD" points at to the other end, we can tell the target of other symbolic refs as well. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'upload-pack.c')
-rw-r--r--upload-pack.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/upload-pack.c b/upload-pack.c
index 979fc8eae3..2826909eba 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -798,6 +798,7 @@ static void upload_pack(void)
struct string_list symref = STRING_LIST_INIT_DUP;
head_ref_namespaced(find_symref, &symref);
+ for_each_namespaced_ref(find_symref, &symref);
if (advertise_refs || !stateless_rpc) {
reset_timeout();