projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be1295d
)
git-push: make --thin pack transfer the default.
author
Junio C Hamano
<junkio@cox.net>
Sun, 26 Mar 2006 02:27:15 +0000
(18:27 -0800)
committer
Junio C Hamano
<junkio@cox.net>
Sun, 26 Mar 2006 08:23:52 +0000
(
00:23
-0800)
Just in case it has problems, you can say "git push --no-thin".
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-push.sh
patch
|
blob
|
history
diff --git
a/git-push.sh
b/git-push.sh
index
73dcf06
..
f10cadb
100755
(executable)
--- a/
git-push.sh
+++ b/
git-push.sh
@@
-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 ;;
*)