diff options
| author | Junio C Hamano <junkio@cox.net> | 2006-03-26 00:24:03 -0800 |
|---|---|---|
| committer | Junio C Hamano <junkio@cox.net> | 2006-03-26 00:24:03 -0800 |
| commit | f4e96f97e85c145616bc2e23e9441bc0daa2906e (patch) | |
| tree | 76d83f3abbcdaffb57ac247c27de1aa2508bc249 /git-push.sh | |
| parent | b9aa1f9e9d8f05f350c2e14d6389a5e8596033e9 (diff) | |
| parent | 84f11a43358b77a936770b908cb245ae1ad86c58 (diff) | |
| download | git-f4e96f97e85c145616bc2e23e9441bc0daa2906e.tar.gz | |
Merge branch 'jc/thin' into next
* jc/thin:
git-push: make --thin pack transfer the default.
gitk: Fix two bugs reported by users
gitk: Improve appearance of first child links
gitk: Make downward-pointing arrows end in vertical line segment
gitk: Don't change cursor at end of layout if find in progress
gitk: Make commitdata an array rather than a list
gitk: Fix display of diff lines beginning with --- or +++
[PATCH] gitk: Make error_popup react to Return
gitk: Fix a bug in drawing the selected line as a thick line
gitk: Further speedups
gitk: Various speed improvements
gitk: Fix Update menu item
gitk: Fix clicks on arrows on line ends
gitk: New improved gitk
contrib/git-svn: stabilize memory usage for big fetches
Diffstat (limited to 'git-push.sh')
| -rwxr-xr-x | git-push.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/git-push.sh b/git-push.sh index 73dcf067cb..f10cadbf15 100755 --- 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 ;; *) |
