From: Alex Riesen <raa.lkml@gmail.com>
To: Linus Torvalds <torvalds@osdl.org>
Cc: Git Mailing List <git@vger.kernel.org>,
Junio C Hamano <junkio@cox.net>, Petr Baudis <pasky@suse.cz>
Subject: Re: Make "git clone" less of a deathly quiet experience
Date: Sat, 11 Feb 2006 19:39:59 +0100 [thread overview]
Message-ID: <20060211183959.GA9984@steel.home> (raw)
In-Reply-To: <Pine.LNX.4.64.0602102018250.3691@g5.osdl.org>
Linus Torvalds, Sat, Feb 11, 2006 05:31:09 +0100:
> So with this patch, I get something like this on my DSL line:
>
> [torvalds@g5 ~]$ time git clone master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6 clone-test
> Packing 188543 objects
> 48.398MB (154 kB/s)
I get this:
$ git clone . ../cloned
Packing 15440 objects
$ 2 kB/s)
I'd put a \n before finish_pack to make it nicer.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
diff --git a/fetch-clone.c b/fetch-clone.c
index b67d976..37141e9 100644
--- a/fetch-clone.c
+++ b/fetch-clone.c
@@ -193,5 +193,7 @@ int receive_keep_pack(int fd[2], const c
}
}
close(ofd);
+ if ( !quiet )
+ fputc('\n', stderr);
return finish_pack(tmpfile, me);
}
next prev parent reply other threads:[~2006-02-11 18:40 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-11 4:31 Make "git clone" less of a deathly quiet experience Linus Torvalds
2006-02-11 4:37 ` Linus Torvalds
2006-02-11 5:50 ` Junio C Hamano
2006-02-11 17:39 ` Linus Torvalds
2006-02-11 5:48 ` Junio C Hamano
2006-02-11 7:35 ` Craig Schlenter
2006-02-11 8:44 ` Radoslaw Szkodzinski
2006-02-11 13:05 ` Petr Baudis
2006-02-11 13:15 ` Radoslaw Szkodzinski
2006-02-11 13:33 ` Petr Baudis
2006-02-11 13:41 ` Petr Baudis
2006-02-11 17:24 ` Alex Riesen
2006-02-11 17:45 ` Linus Torvalds
2006-02-11 19:10 ` Keith Packard
2006-02-12 3:43 ` Andreas Ericsson
2006-02-12 4:11 ` Keith Packard
2006-02-12 11:02 ` Andreas Ericsson
2006-02-12 21:04 ` Keith Packard
2006-02-16 6:56 ` Eric W. Biederman
2006-02-16 7:33 ` Junio C Hamano
2006-02-13 2:06 ` Martin Langhoff
2006-02-13 3:36 ` Junio C Hamano
2006-02-11 18:39 ` Alex Riesen [this message]
2006-02-11 19:04 ` Linus Torvalds
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060211183959.GA9984@steel.home \
--to=raa.lkml@gmail.com \
--cc=git@vger.kernel.org \
--cc=junkio@cox.net \
--cc=pasky@suse.cz \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).