Re: [PATCH] Add command `git bisect state` that checks if the current bisection process has reached the first bad commit.

2013-08-18 Thread Junio C Hamano
Mattias Andrée maand...@member.fsf.org writes: This patch allows you to an automated by section by just like if it was a manual, i.e. stating with `git bisect start git bisect bad git bisect good commit` but then type: while ! git bisect state; do test command git bisect good || git

[PATCH] Add command `git bisect state` that checks if the current bisection process has reached the first bad commit.

2013-08-15 Thread Mattias Andrée
This can be used for automated bisection without a check script. Signed-off-by: Mattias Andrée maand...@operamail.com --- Documentation/git-bisect.txt | 13 + git-bisect.sh| 11 ++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git

Re: [PATCH] Add command `git bisect state` that checks if the current bisection process has reached the first bad commit.

2013-08-15 Thread Eric Sunshine
On Thu, Aug 15, 2013 at 6:35 PM, Mattias Andrée maand...@operamail.com wrote: This can be used for automated bisection without a check script. Signed-off-by: Mattias Andrée maand...@operamail.com --- Documentation/git-bisect.txt | 13 + git-bisect.sh| 11

Re: [PATCH] Add command `git bisect state` that checks if the current bisection process has reached the first bad commit.

2013-08-15 Thread Mattias Andrée
On Fri, 16 Aug 2013 00:17:27 -0400 Eric Sunshine sunsh...@sunshineco.com wrote: On Thu, Aug 15, 2013 at 6:35 PM, Mattias Andrée maand...@operamail.com wrote: This can be used for automated bisection without a check script. Signed-off-by: Mattias Andrée maand...@operamail.com ---