diff options
author | Tom Prince <tom.prince@ualberta.net> | 2006-01-10 18:50:19 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-10 22:10:37 -0800 |
commit | 0f76f52621a6d760127cf2a508e09287766219b6 (patch) | |
tree | 7cfe7e06a479489063942b32e2a92f2147635855 /git-fetch.sh | |
parent | Merge fixes up to GIT 1.1.1 (diff) | |
download | tgif-0f76f52621a6d760127cf2a508e09287766219b6.tar.xz |
Add --keep option to keep downloaded packs to git-fetch.
Signed-off-by: Tom Prince <tom.prince@ualberta.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-fetch.sh')
-rwxr-xr-x | git-fetch.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/git-fetch.sh b/git-fetch.sh index 73e57bd784..4a0cb32f30 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 |