Thread (10 messages) flat view 10 messages, 2 authors, 2016-06-15

Re: [PATCH v15 5/7] bisect: introduce --no-checkout support into porcelain.

From: Christian Couder <hidden>
Date: 2016-06-15 22:51:44

On Wednesday 03 August 2011 17:32:09 Jon Seymour wrote:
On Thu, Aug 4, 2011 at 1:03 AM, Jon Seymour [off-list ref] wrote:
        rm -f "$GIT_DIR/head-name" &&
quoted
-
-       rm -f "$GIT_DIR/BISECT_START"
+       rm -f "$GIT_DIR/BISECT_START" &&
+       git update-ref -d BISECT_HEAD
 }
I'll reverse the order of the last two statements and restore the blank
line...
Great!

It would be nice too if the "git update-ref" call that creates the ref in the 
first place was after the creation of the $GIT_DIR/BISECT_START file.
This way we start by creating the $GIT_DIR/BISECT_START file and we finish by 
deleting it.

That is change this:

...
+       test "$mode" != "--no-checkout" ||
+       git update-ref --no-deref BISECT_HEAD "$start_head" &&
        echo "$start_head" >"$GIT_DIR/BISECT_START" &&
 
into something like this:

        echo "$start_head" >"$GIT_DIR/BISECT_START" &&
+	{
+		test "$mode" != "--no-checkout" ||
+       	git update-ref --no-deref BISECT_HEAD "$start_head"
+	} &&
...

Thanks,
Christian.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help