From 0f76f52621a6d760127cf2a508e09287766219b6 Mon Sep 17 00:00:00 2001 From: Tom Prince Date: Tue, 10 Jan 2006 18:50:19 -0700 Subject: Add --keep option to keep downloaded packs to git-fetch. Signed-off-by: Tom Prince Signed-off-by: Junio C Hamano diff --git a/Documentation/fetch-options.txt b/Documentation/fetch-options.txt index 1fe8423..e624d3d 100644 --- a/Documentation/fetch-options.txt +++ b/Documentation/fetch-options.txt @@ -24,6 +24,9 @@ flag lets all tags and their associated objects be downloaded. +-k, \--keep:: + Keep downloaded pack. + -u, \--update-head-ok:: By default `git-fetch` refuses to update the head which corresponds to the current branch. This flag disables the diff --git a/git-fetch.sh b/git-fetch.sh index 73e57bd..4a0cb32 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -40,6 +40,9 @@ do -v|--verbose) verbose=Yes ;; + -k|--k|--ke|--kee|--keep) + keep=--keep + ;; -*) usage ;; @@ -309,7 +312,7 @@ fetch_main () { ( : subshell because we muck with IFS IFS=" $LF" ( - git-fetch-pack "$remote" $rref || echo failed "$remote" + git-fetch-pack $keep "$remote" $rref || echo failed "$remote" ) | while read sha1 remote_name do -- cgit v0.10.2-6-g49f6