Re: [RFE] Allow for "interactive"-like actions in non-interactive rebase

2019-05-06 Thread Konstantin Kharlamov
On Пн, May 6, 2019 at 18:25, Eric Sunshine wrote: On Mon, May 6, 2019 at 4:30 PM Emily Shaffer wrote: On Fri, May 03, 2019 at 06:04:15PM +0300, Konstantin Kharlamov wrote: > Interactive rebase (i.e. for example "git rebase -i HEAD~10") is used most > often to apply an action to a singl

Re: [RFE] Allow for "interactive"-like actions in non-interactive rebase

2019-05-06 Thread Eric Sunshine
On Mon, May 6, 2019 at 4:30 PM Emily Shaffer wrote: > On Fri, May 03, 2019 at 06:04:15PM +0300, Konstantin Kharlamov wrote: > > Interactive rebase (i.e. for example "git rebase -i HEAD~10") is used most > > often to apply an action to a single commit, e.g. "rename", "edit", "fixup", > > etc… > > >

Re: [RFE] Allow for "interactive"-like actions in non-interactive rebase

2019-05-06 Thread Emily Shaffer
Hi, On Fri, May 03, 2019 at 06:04:15PM +0300, Konstantin Kharlamov wrote: > Interactive rebase (i.e. for example "git rebase -i HEAD~10") is used most > often to apply an action to a single commit, e.g. "rename", "edit", "fixup", > etc… > > As result, people keep coming up with custom scripts and

[RFE] Allow for "interactive"-like actions in non-interactive rebase

2019-05-03 Thread Konstantin Kharlamov
Interactive rebase (i.e. for example "git rebase -i HEAD~10") is used most often to apply an action to a single commit, e.g. "rename", "edit", "fixup", etc… As result, people keep coming up with custom scripts and aliases for every distinct action. Instead, it would be nice to have native su