C Git allows this and it is quite handy.
Change-Id: I1d0238b43fca931ad2079649fb7b431e2815c351
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
/* Do not reset, checkout instead */
public boolean canResetHead() { return false; }
- /* Actually it may make sense, but for now we err on the side of caution */
- public boolean canCommit() { return false; }
+ /* Commit during bisect is useful */
+ public boolean canCommit() { return true; }
public String getDescription() { return "Bisecting"; }
};