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>
This commit is contained in:
Junio C Hamano 2006-03-25 18:27:15 -08:00
Родитель be1295d16a
Коммит 84f11a4335
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -8,7 +8,7 @@ USAGE='[--all] [--tags] [--force] <repository> [<refspec>...]'
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 ;;
*)