X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-push.sh;h=f10cadbf159bcd63af0c3834bd7cd2fab6cce57c;hb=1a82e79315ed633f6b0b1fc4076054950c5380d3;hp=706db9933e7a3d418a0bc77a743695464901b800;hpb=90768daaa006516c7ae69ed89d7c2e67243dfac1;p=git.git diff --git a/git-push.sh b/git-push.sh index 706db993..f10cadbf 100755 --- a/git-push.sh +++ b/git-push.sh @@ -8,6 +8,7 @@ USAGE='[--all] [--tags] [--force] [...]' has_all= has_force= has_exec= +has_thin=--thin remote= do_tags= @@ -22,6 +23,10 @@ do has_force=--force ;; --exec=*) has_exec="$1" ;; + --thin) + ;; # noop + --no-thin) + has_thin= ;; -*) usage ;; *) @@ -72,6 +77,7 @@ set x "$remote" "$@"; shift test "$has_all" && set x "$has_all" "$@" && shift test "$has_force" && set x "$has_force" "$@" && shift test "$has_exec" && set x "$has_exec" "$@" && shift +test "$has_thin" && set x "$has_thin" "$@" && shift case "$remote" in http://* | https://*)