On Wed, Apr 09, 2008 at 08:03:49PM -0400, Jeff King wrote: > Here is a patch that fixes the breakage, which should be done either > way. If people think this is a good thing to show in general (and I do, > but then I am not a very frequent user of "fetch without tracking > branches"), then there is an obvious one-liner to make it always show. And here is that one-liner, in case there is interest. The only negative I can think of is that git-pull will now produce two extra lines of output mentioning FETCH_HEAD (which I actually think is a positive, but I can see that people might consider it clutter). -- >8 -- git-fetch: always show status of non-tracking-ref fetches Previously, a fetch like: git fetch git://some/url would show no ref status output (just the object downloading status, if there was any), leading to some confusion. With this patch, we now show the usual ref table, with remote refs going into FETCH_HEAD. Previously this output was shown only if "-v"erbose was specified. Signed-off-by: Jeff King <peff@xxxxxxxx> --- builtin-fetch.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/builtin-fetch.c b/builtin-fetch.c index 139a6b1..e4486e4 100644 --- a/builtin-fetch.c +++ b/builtin-fetch.c @@ -360,12 +360,10 @@ static int store_updated_refs(const char *url, struct ref *ref_map) if (ref) update_local_ref(ref, what, verbose, note); - else if (verbose) + else sprintf(note, "* %-*s %-*s -> FETCH_HEAD", SUMMARY_WIDTH, *kind ? kind : "branch", REFCOL_WIDTH, *what ? what : "HEAD"); - else - *note = '\0'; if (*note) { if (!shown_url) { fprintf(stderr, "From %.*s\n", -- 1.5.5.26.g8c565.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html