From: Johannes Schindelin Date: Mon, 2 Jan 2017 15:26:38 +0000 (+0100) Subject: sequencer (rebase -i): implement the 'noop' command X-Git-Tag: v2.12.0-rc0~38^2~33 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/25c4366782ea941baad3b09d4b9ef63996f1e3b1?ds=inline;hp=25c4366782ea941baad3b09d4b9ef63996f1e3b1 sequencer (rebase -i): implement the 'noop' command The 'noop' command is probably the most boring of all rebase -i commands to support in the sequencer. Which makes it an excellent candidate for this first stab to add support for rebase -i's commands to the sequencer. For the moment, let's also treat empty lines and commented-out lines as 'noop'; We will refine that handling later in this patch series. To make it easier to identify "classes" of todo_commands (such as: determine whether a command is pick-like, i.e. handles a single commit), let's enforce a certain order of said commands. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano ---