mirror of
https://github.com/git/git.git
synced 2024-11-19 18:53:59 +01:00
rebase: give a better error message for bogus branch
When you give a non-existent branch to git-rebase, it spits out the usage. This can be confusing, since you may understand the usage just fine, but simply have made a mistake in the branch name. Before: $ git rebase origin bogus Usage: git rebase ... After: $ git rebase origin bogus fatal: no such branch: bogus Usage: git rebase ... Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
3b21a438c9
commit
4ac5356c62
@ -491,6 +491,7 @@ case "$#" in
|
||||
then
|
||||
head_name="detached HEAD"
|
||||
else
|
||||
echo >&2 "fatal: no such branch: $1"
|
||||
usage
|
||||
fi
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user