git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-clone: Error meaningfully on failed HTTP fetches of HEAD
@ 2007-04-11 22:05 Martin Langhoff
  2007-04-12  0:24 ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Langhoff @ 2007-04-11 22:05 UTC (permalink / raw)
  To: git, junkio; +Cc: Martin Langhoff

A common problem when cloning over http is that the repo has
a symlink for HEAD, and apache refuses to serve symlinks by
default.

Without this patch, the clone succeeds as a "bare" and "HEADless"
clone, but does not give any indication that things have gone
wrong.

A bare clone that fails to fetch HEAD will still complete
"successfully". I'm not sure if that's expected/desired. Is a
HEADless repo valid in any situation?

Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>
---
 git-clone.sh |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/git-clone.sh b/git-clone.sh
index 513b574..ef8cd26 100755
--- a/git-clone.sh
+++ b/git-clone.sh
@@ -65,6 +65,11 @@ Perhaps git-update-server-info needs to be run there?"
 	rm -fr "$clone_tmp"
 	http_fetch "$1/HEAD" "$GIT_DIR/REMOTE_HEAD" ||
 	rm -f "$GIT_DIR/REMOTE_HEAD"
+
+	if test -z "$bare" && test ! -f "$GIT_DIR/REMOTE_HEAD"
+	then
+		die "Could not retrieve $1/HEAD - perhaps it is a symlink?"
+	fi
 }
 
 quiet=
-- 
1.5.1.106.ga32037

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] git-clone: Error meaningfully on failed HTTP fetches of HEAD
  2007-04-11 22:05 [PATCH] git-clone: Error meaningfully on failed HTTP fetches of HEAD Martin Langhoff
@ 2007-04-12  0:24 ` Junio C Hamano
  2007-04-12  0:28   ` Martin Langhoff
  0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2007-04-12  0:24 UTC (permalink / raw)
  To: Martin Langhoff; +Cc: git, junkio

Martin Langhoff <martin@catalyst.net.nz> writes:

> A common problem when cloning over http is that the repo has
> a symlink for HEAD, and apache refuses to serve symlinks by
> default.
>
> Without this patch, the clone succeeds as a "bare" and "HEADless"
> clone, but does not give any indication that things have gone
> wrong.
>
> A bare clone that fails to fetch HEAD will still complete
> "successfully". I'm not sure if that's expected/desired. Is a
> HEADless repo valid in any situation?

You would get "fatal: Not a git repository".  Why not default to
'master' (if found) and issue a warning?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] git-clone: Error meaningfully on failed HTTP fetches of HEAD
  2007-04-12  0:24 ` Junio C Hamano
@ 2007-04-12  0:28   ` Martin Langhoff
  2007-04-12  0:38     ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Langhoff @ 2007-04-12  0:28 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Junio C Hamano wrote:
>> A bare clone that fails to fetch HEAD will still complete
>> "successfully". I'm not sure if that's expected/desired. Is a
>> HEADless repo valid in any situation?
> 
> You would get "fatal: Not a git repository".  Why not default to
> 'master' (if found) and issue a warning?

And if not found die() for real...? Ok. I'll rework and resend.

cheers,



m
-- 
-----------------------------------------------------------------------
Martin @ Catalyst .Net .NZ  Ltd, PO Box 11-053, Manners St,  Wellington
WEB: http://catalyst.net.nz/           PHYS: Level 2, 150-154 Willis St
OFFICE: +64(4)916-7224  UK: 0845 868 5733 ext 7224  MOB: +64(21)364-017
      Make things as simple as possible, but no simpler - Einstein
-----------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] git-clone: Error meaningfully on failed HTTP fetches of HEAD
  2007-04-12  0:28   ` Martin Langhoff
@ 2007-04-12  0:38     ` Junio C Hamano
  0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2007-04-12  0:38 UTC (permalink / raw)
  To: Martin Langhoff; +Cc: git

Martin Langhoff <martin@catalyst.net.nz> writes:

> Junio C Hamano wrote:
>>> A bare clone that fails to fetch HEAD will still complete
>>> "successfully". I'm not sure if that's expected/desired. Is a
>>> HEADless repo valid in any situation?
>> 
>> You would get "fatal: Not a git repository".  Why not default to
>> 'master' (if found) and issue a warning?
>
> And if not found die() for real...? Ok. I'll rework and resend.

Yeah, after making sure we have 'master' there, though ;-).

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-04-12  0:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-11 22:05 [PATCH] git-clone: Error meaningfully on failed HTTP fetches of HEAD Martin Langhoff
2007-04-12  0:24 ` Junio C Hamano
2007-04-12  0:28   ` Martin Langhoff
2007-04-12  0:38     ` 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;
as well as URLs for NNTP newsgroup(s).