DORMANTno replies

[PATCH] git-clone: stop dumb protocol from copying refs outside heads/ and tags/.

From: Junio C Hamano <hidden>
Date: 2016-08-11 20:16:23
Subsystem: the rest · Maintainer: Linus Torvalds

Most notably, the original code first copied refs/remotes/ that
remote side had to local, and overwrote them by mapping refs/heads/
from the remote when a dumb protocol transport was used.

This makes the clone behaviour by dumb protocol in line with the
git native and rsync transports.

Signed-off-by: Junio C Hamano <redacted>
---

 * This is another one of those patches I've been doing recently
   after making --use-separate-remote the default.  Judging from
   my experience in the past few days, it is quite surprising
   that none of these were found and reported earlier, given
   that many people made loud noises to make separate-remote the
   default layout.  Maybe they do not eat their own dog food?  I
   honestly do not know...

 git-clone.sh |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/git-clone.sh b/git-clone.sh
index 9ed4135..d4ee93f 100755
--- a/git-clone.sh
+++ b/git-clone.sh
@@ -48,6 +48,10 @@ Perhaps git-update-server-info needs to be run there?"
 		case "$name" in
 		*^*)	continue;;
 		esac
+		case "$bare,$name" in
+		yes,* | ,heads/* | ,tags/*) ;;
+		*)	continue ;;
+		esac
 		if test -n "$use_separate_remote" &&
 		   branch_name=`expr "z$name" : 'zheads/\(.*\)'`
 		then
-- 
1.4.4.1.g61fba
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help