Re: [PATCH/RFC/GSoC 12/17] rebase-todo: introduce rebase_todo_item

2016-03-19 Thread Paul Tan
Hi Christian, On Mon, Mar 14, 2016 at 9:43 PM, Christian Couder wrote: > On Sat, Mar 12, 2016 at 11:46 AM, Paul Tan wrote: >> In an interactive rebase, commands are read and executed from a todo >> list (.git/rebase-merge/git-rebase-todo) to

Re: [PATCH/RFC/GSoC 12/17] rebase-todo: introduce rebase_todo_item

2016-03-19 Thread Johannes Schindelin
Hi Paul, On Wed, 16 Mar 2016, Paul Tan wrote: > On Mon, Mar 14, 2016 at 9:43 PM, Christian Couder > wrote: > > On Sat, Mar 12, 2016 at 11:46 AM, Paul Tan wrote: > >> In an interactive rebase, commands are read and executed from a todo > >> list

Re: [PATCH/RFC/GSoC 12/17] rebase-todo: introduce rebase_todo_item

2016-03-14 Thread Johannes Schindelin
Hi Christian, On Mon, 14 Mar 2016, Christian Couder wrote: > On Sat, Mar 12, 2016 at 11:46 AM, Paul Tan wrote: > > In an interactive rebase, commands are read and executed from a todo > > list (.git/rebase-merge/git-rebase-todo) to perform the rebase. > > > > In the upcoming

Re: [PATCH/RFC/GSoC 12/17] rebase-todo: introduce rebase_todo_item

2016-03-14 Thread Christian Couder
On Sat, Mar 12, 2016 at 11:46 AM, Paul Tan wrote: > In an interactive rebase, commands are read and executed from a todo > list (.git/rebase-merge/git-rebase-todo) to perform the rebase. > > In the upcoming re-implementation of git-rebase -i in C, it is useful to > be able to

[PATCH/RFC/GSoC 12/17] rebase-todo: introduce rebase_todo_item

2016-03-12 Thread Paul Tan
In an interactive rebase, commands are read and executed from a todo list (.git/rebase-merge/git-rebase-todo) to perform the rebase. In the upcoming re-implementation of git-rebase -i in C, it is useful to be able to parse each command into a data structure which can then be operated on.