From 4a62b61939396c512bd7592f800110bddf45af72 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 2 Jun 2005 15:19:00 -0700 Subject: [PATCH] Handle deltified object correctly in git-*-pull family. When a remote repository is deltified, we need to get the objects that a deltified object we want to obtain is based upon. The initial parts of each retrieved SHA1 file is inflated and inspected to see if it is deltified, and its base object is asked from the remote side when it is. Since this partial inflation and inspection has a small performance hit, it can optionally be skipped by giving -d flag to git-*-pull commands. This flag should be used only when the remote repository is known to have no deltified objects. Rsync transport does not have this problem since it fetches everything the remote side has. Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- rpull.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'rpull.c') diff --git a/rpull.c b/rpull.c index 36e49f799a..8b3322fe07 100644 --- a/rpull.c +++ b/rpull.c @@ -27,6 +27,8 @@ int main(int argc, char **argv) get_tree = 1; } else if (argv[arg][1] == 'c') { get_history = 1; + } else if (argv[arg][1] == 'd') { + get_delta = 0; } else if (argv[arg][1] == 'a') { get_all = 1; get_tree = 1; @@ -37,7 +39,7 @@ int main(int argc, char **argv) arg++; } if (argc < arg + 2) { - usage("git-rpull [-c] [-t] [-a] [-v] commit-id url"); + usage("git-rpull [-c] [-t] [-a] [-v] [-d] commit-id url"); return 1; } commit_id = argv[arg]; -- cgit 1.2.3-korg