bisect: improve error msg of 'bisect reset' when original HEAD is deleted
commit3bb8cf88247db589b60e79c0520b081793cfd68e
authorSZEDER Gábor <szeder@ira.uka.de>
Sun, 10 Oct 2010 21:48:57 +0000 (10 23:48 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 13 Oct 2010 22:07:50 +0000 (13 15:07 -0700)
treefaaaa45e33f8ff1d37edeafafd975f8826fc39cf
parent412ff738addd3f329d641073fd1aa32629d5bfbf
bisect: improve error msg of 'bisect reset' when original HEAD is deleted

'git bisect reset' (without the optional <commit> argument) returns to
the original HEAD from where the bisection was started.  However,
when, for whatever reason, the user deleted the original HEAD before
invoking 'git bisect reset', then all he gets is an error message from
'git checkout':

  fatal: invalid reference: somebranch

Let's try to be more helpful with an error message better describing
what went wrong and a suggestion about how to resolve the situation:

  Could not check out original HEAD 'somebranch'. Try 'git bisect reset <commit>'.

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-bisect.sh