Re: [PATCH 3/3] sequencer: simplify root commit creation

2019-08-22 Thread Phillip Wood
On 19/08/2019 17:09, Eric Sunshine wrote: On Mon, Aug 19, 2019 at 5:18 AM Phillip Wood via GitGitGadget wrote: Adapt try_to_commit() to create a new root commit rather than special casing this in run_git_commit(). The significantly reduces the amount of s/The/This/ Thanks Eric - well spotte

Re: [PATCH 3/3] sequencer: simplify root commit creation

2019-08-19 Thread Eric Sunshine
On Mon, Aug 19, 2019 at 5:18 AM Phillip Wood via GitGitGadget wrote: > Adapt try_to_commit() to create a new root commit rather than special > casing this in run_git_commit(). The significantly reduces the amount of s/The/This/ > special case code for creating the root commit and reduces the num

[PATCH 3/3] sequencer: simplify root commit creation

2019-08-19 Thread Phillip Wood via GitGitGadget
From: Phillip Wood Adapt try_to_commit() to create a new root commit rather than special casing this in run_git_commit(). The significantly reduces the amount of special case code for creating the root commit and reduces the number of commit code paths we have to worry about. Signed-off-by: Phil