projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f5608b
)
Barf nicely when "git push" is run without parameter.
author
Junio C Hamano
<junkio@cox.net>
Fri, 26 Aug 2005 17:37:17 +0000
(10:37 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Sun, 28 Aug 2005 19:14:30 +0000
(12:14 -0700)
Saying "internal error" makes it look like my fault ;-).
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-push-script
patch
|
blob
|
history
diff --git
a/git-push-script
b/git-push-script
index
5fa5af2
..
744ee7e
100755
(executable)
--- a/
git-push-script
+++ b/
git-push-script
@@
-26,6
+26,10
@@
do
esac
shift
done
+case "$#" in
+0)
+ die "Where would you want to push today?" ;;
+esac
. git-parse-remote-script
remote=$(get_remote_url "$@")