Improve error output of git-rebase
commit9b752a6e31f93f2925856a0c0607c2ffc2a93375
authorStephan Beyer <s-beyer@gmx.net>
Sun, 17 Aug 2008 04:25:43 +0000 (17 06:25 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 17 Aug 2008 06:21:18 +0000 (16 23:21 -0700)
treef397949119d809a4ce7524e5377133ad149d5651
parent20a55f4b2ef033dbb4a344e467716e03e13263a4
Improve error output of git-rebase

"git rebase" without arguments on initial startup showed:

fatal: Needed a single revision
invalid upstream

This patch makes it show the ordinary usage string.

If .git/rebase-merge or .git/rebase-apply/rebasing exists, git-rebase
will die with a message saying that a rebase is in progress and the user
should try --skip/--abort/--continue.

If .git/rebase-apply/applying exists, git-rebase will die with a message
saying that git-am is in progress, regardless how many arguments are
given.

If no arguments are given and .git/rebase-apply/ exists, but neither a
rebasing nor applying file is in that directory, git-rebase dies with a
message saying that rebase-apply exists and no arguments were given.

Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-rebase.sh