bisect: fix exiting when checkout failed in bisect_start()
commit1acf11717f01b542e099544796f00df567a66e90
authorChristian Couder <chriscool@tuxfamily.org>
Wed, 21 Sep 2011 05:17:24 +0000 (21 07:17 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 21 Sep 2011 11:55:15 +0000 (21 04:55 -0700)
treede0eaeb4b64fccafb469122a5056313b7e963060
parent24c512803dadf61b2f7f8965735b7c3a03f6147e
bisect: fix exiting when checkout failed in bisect_start()

Commit 4796e823 ("bisect: introduce --no-checkout support into porcelain." Aug 4 2011)
made checking out the branch where we started depends on the "checkout" mode. But
unfortunately it lost the "|| exit" part after the checkout command.

As it makes no sense to continue if the checkout failed and as people have already
complained that the error message given when we just exit in this case is not clear, see:

http://thread.gmane.org/gmane.comp.version-control.git/180733/

this patch adds a "|| die <hopefully clear message>" part after the checkout command.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Acked-by: Jon Seymour <jon.seymour@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-bisect.sh