From: Junio C Hamano Date: Sun, 26 Mar 2006 02:27:15 +0000 (-0800) Subject: git-push: make --thin pack transfer the default. X-Git-Tag: v1.3.0-rc1~4^2 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=84f11a43358b77a936770b908cb245ae1ad86c58;p=git.git git-push: make --thin pack transfer the default. Just in case it has problems, you can say "git push --no-thin". Signed-off-by: Junio C Hamano --- diff --git a/git-push.sh b/git-push.sh index 73dcf067..f10cadbf 100755 --- a/git-push.sh +++ b/git-push.sh @@ -8,7 +8,7 @@ USAGE='[--all] [--tags] [--force] [...]' has_all= has_force= has_exec= -has_thin= +has_thin=--thin remote= do_tags= @@ -24,7 +24,9 @@ do --exec=*) has_exec="$1" ;; --thin) - has_thin="$1" ;; + ;; # noop + --no-thin) + has_thin= ;; -*) usage ;; *)