diff options
author | Nicolas Pitre <nico@cam.org> | 2006-10-27 15:42:17 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-27 14:58:31 -0700 |
commit | d9c20ba13dfca737373ba466d2a718cafdc17f92 (patch) | |
tree | ac6621754f3455246ca650d14abec0bf05046579 /fetch-pack.c | |
parent | 9bee24785133ba3c2361b17f8c20019ab57b6f72 (diff) | |
download | git-d9c20ba13dfca737373ba466d2a718cafdc17f92.tar.gz git-d9c20ba13dfca737373ba466d2a718cafdc17f92.tar.xz |
enhance clone and fetch -k experience
Now that index-pack can be streamed with a pack, it is probably a good
idea to use it directly instead of creating a temporary file and running
index-pack afterwards. This way index-pack can abort early whenever a
corruption is encountered even if the pack has not been fully
downloaded, it can display a progress percentage as it knows how much to
expects, and it is a bit faster since the pack indexing is partially
done as data is received. Using fetch -k doesn't need to disable thin
pack generation on the remote end either.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'fetch-pack.c')
-rw-r--r-- | fetch-pack.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fetch-pack.c b/fetch-pack.c index 474d54520..8720ed42e 100644 --- a/fetch-pack.c +++ b/fetch-pack.c @@ -518,8 +518,6 @@ int main(int argc, char **argv) } if (!dest) usage(fetch_pack_usage); - if (keep_pack) - use_thin_pack = 0; pid = git_connect(fd, dest, exec); if (pid < 0) return 1; |