git-rebase--interactive.sh: rework skip_unnecessary_picks
commit2d6ca6ef55226185b6a093f7fac27f5fecd51fe6
authorBrandon Casey <drafnel@gmail.com>
Fri, 13 Aug 2010 20:47:34 +0000 (13 15:47 -0500)
committerJunio C Hamano <gitster@pobox.com>
Fri, 13 Aug 2010 21:19:12 +0000 (13 14:19 -0700)
tree444e97b13471f14e7a4a5d690f5edfedc8700771
parent2caf20c52b7f646d0a7481c25415c48d687773b2
git-rebase--interactive.sh: rework skip_unnecessary_picks

Commit cd035b1c introduced the exec command to interactive rebase.  In
doing so, it modified the way that skip_unnecessary_picks iterates through
the list of rebase commands so that it avoided collapsing multiple spaces
into a single space.  This is necessary for example if the argument to the
exec command contains a path with multiple spaces in it.

The way it did this was by reading each line of rebase commands into a
single variable, and then breaking the individual components out using
echo, sed, and cut.  It used the individual broken-out components for
decision making, and was still able to write the original line to the
output file from the variable it had saved it in.  But, since we only
really need to look at anything other than the first element of the line
when a 'pick' command is encountered, and even that is only necessary when
we are still searching for "unnecessary" picks, and since newer rebase
commands like 'exec' may not even require a sha1 field, let's make our read
statement parse its input into a "command" variable, and a "rest" variable,
and then only break out the sha1 from $rest, and call git-rev-parse, when
absolutely necessary.

I think this future proofs this subroutine, avoids calling git-rev-parse
unnecessarily, and possibly with bogus arguments, and still accomplishes
the goal of not mangling the $rest of the rebase command.

Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-rebase--interactive.sh