* [PATCH] git-clone: stop dumb protocol from copying refs outside heads/ and tags/.
@ 2006-11-25 3:17 Junio C Hamano
0 siblings, 0 replies; only message in thread
From: Junio C Hamano @ 2006-11-25 3:17 UTC (permalink / raw)
To: git
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 <junkio@cox.net>
---
* 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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-11-25 3:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-25 3:17 [PATCH] git-clone: stop dumb protocol from copying refs outside heads/ and tags/ Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox