diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-11-18 12:25:28 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-11-18 12:25:28 -0800 |
commit | 33da0c9c3c2ec2706c80f70226739f14a66baa21 (patch) | |
tree | a773c8b68eb7b27767e7c72eb56a0e67206fc226 | |
parent | ab930f02961bd4cce9b3dd5049c6eabd07ca03a8 (diff) | |
parent | d007dbf7d6d647dbcf0f357545f43f36dec46f3b (diff) | |
download | git-33da0c9c3c2ec2706c80f70226739f14a66baa21.tar.gz git-33da0c9c3c2ec2706c80f70226739f14a66baa21.tar.xz |
Merge branch 'maint'
Hotfix for recent regression while talking to upload-pack
in a repository with many symbolic refs.
* maint:
Revert "upload-pack: send non-HEAD symbolic refs"
-rw-r--r-- | upload-pack.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/upload-pack.c b/upload-pack.c index 43342ac16..c989a737f 100644 --- a/upload-pack.c +++ b/upload-pack.c @@ -753,7 +753,6 @@ 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(); |