"Phillip Wood via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > +static void add_rebase_files(struct rev_info *revs) > +{ > + struct strbuf buf = STRBUF_INIT; > + size_t len; > + const char *path[] = { > + "rebase-apply/autostash", > + "rebase-apply/orig-head", > + "rebase-merge/autostash", > + "rebase-merge/orig-head", > + }; Yuck. Having this table here makes the sequencer subsystem even less maintainable than it already is. I wonder if we can at least somehow share some of these? #leftoverbits. Thanks.