Browse Source

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 <junkio@cox.net>
maint
Junio C Hamano 19 years ago
parent
commit
84f11a4335
  1. 6
      git-push.sh

6
git-push.sh

@ -8,7 +8,7 @@ USAGE='[--all] [--tags] [--force] <repository> [<refspec>...]'
has_all= has_all=
has_force= has_force=
has_exec= has_exec=
has_thin= has_thin=--thin
remote= remote=
do_tags= do_tags=


@ -24,7 +24,9 @@ do
--exec=*) --exec=*)
has_exec="$1" ;; has_exec="$1" ;;
--thin) --thin)
has_thin="$1" ;; ;; # noop
--no-thin)
has_thin= ;;
-*) -*)
usage ;; usage ;;
*) *)

Loading…
Cancel
Save