git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] Fix 'git remote show' regression on empty repository in 1.5.4
@ 2008-03-04  6:00 Shawn O. Pearce
  2008-03-04  8:37 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: Shawn O. Pearce @ 2008-03-04  6:00 UTC (permalink / raw
  To: Junio C Hamano; +Cc: git, Daniel Barkalow

Back in 18f7c51c we switched git-ls-remote/git-peek-remote to
use the transport backend, rather than do everything itself.

As part of that switch we started to produce a non-zero exit
status if no refs were received from the remote peer, which
happens when the remote peer has no commits pushed to it yet.
(E.g. "git --git-dir=foo.git init; git ls-remote foo.git")

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
---

 This patch is built against `maint`.

 It will cause a merge conflict against `master` as there is a
 change there to invoke transport_disconnect(transport) before
 displaying the refs.

 Since the disconnect patch is not in maint, but this is a current
 regression in 1.5.4.3, I'm sending you a conflicting patch.  :)

 As far as resolving this when it merges to master, the return value
 of transport_disconnect() is probably what should be checked to
 signal a non-zero exit status to the caller, not the empty ref list.

 builtin-ls-remote.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/builtin-ls-remote.c b/builtin-ls-remote.c
index 6dd31d1..720280e 100644
--- a/builtin-ls-remote.c
+++ b/builtin-ls-remote.c
@@ -94,10 +94,6 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix)
 		transport_set_option(transport, TRANS_OPT_UPLOADPACK, uploadpack);
 
 	ref = transport_get_remote_refs(transport);
-
-	if (!ref)
-		return 1;

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

* Re: [PATCH] Fix 'git remote show' regression on empty repository in 1.5.4
  2008-03-04  6:00 [PATCH] Fix 'git remote show' regression on empty repository in 1.5.4 Shawn O. Pearce
@ 2008-03-04  8:37 ` Junio C Hamano
  0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2008-03-04  8:37 UTC (permalink / raw
  To: Shawn O. Pearce; +Cc: git, Daniel Barkalow

"Shawn O. Pearce" <spearce@spearce.org> writes:

>  It will cause a merge conflict against `master` as there is a
>  change there to invoke transport_disconnect(transport) before
>  displaying the refs.
>
>  Since the disconnect patch is not in maint, but this is a current
>  regression in 1.5.4.3, I'm sending you a conflicting patch.  :)

That's perfectly fine.  Merging is what maintainers do.


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

end of thread, other threads:[~2008-03-04  8:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-04  6:00 [PATCH] Fix 'git remote show' regression on empty repository in 1.5.4 Shawn O. Pearce
2008-03-04  8:37 ` Junio C Hamano

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).