From: Christian Couder Date: Sat, 4 Apr 2009 20:02:26 +0000 (+0200) Subject: bisect: improve error message when branch checkout fails X-Git-Tag: v1.6.3-rc0~41 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/f3a186ffade15f793ea17713a10e10ec4f26ff11?hp=f3a186ffade15f793ea17713a10e10ec4f26ff11 bisect: improve error message when branch checkout fails In "git-bisect.sh" the "git checkout" command is only used to change the current branch, but it is used like this: git checkout "$branch" which will output the following misleading error message when it fails: error: pathspec 'foo' did not match any file(s) known to git. This patch change the way we use "git checkout" like this: git checkout "$branch" -- so that we will get the following error message: fatal: invalid reference: foo which is better. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano ---