Re: [PATCH 20/34] sequencer (rebase -i): copy commit notes at end

2016-09-01 Thread Johannes Schindelin
Hi Dennis, On Thu, 1 Sep 2016, Dennis Kaarsemaker wrote: > On wo, 2016-08-31 at 10:55 +0200, Johannes Schindelin wrote: > > +   if (!stat(rebase_path_rewritten_list(), ) && > > +   st.st_size > 0) { > > +   struct child_process child =

Re: [PATCH 20/34] sequencer (rebase -i): copy commit notes at end

2016-09-01 Thread Dennis Kaarsemaker
On wo, 2016-08-31 at 10:55 +0200, Johannes Schindelin wrote: > +   if (!stat(rebase_path_rewritten_list(), ) && > +   st.st_size > 0) { > +   struct child_process child = CHILD_PROCESS_INIT; > + > +   child.in =

[PATCH 20/34] sequencer (rebase -i): copy commit notes at end

2016-08-31 Thread Johannes Schindelin
When rebasing commits that have commit notes attached, the interactive rebase rewrites those notes faithfully at the end. The sequencer must do this, too, if it wishes to do interactive rebase's job. Signed-off-by: Johannes Schindelin --- sequencer.c | 75