t / lib-rebase.shon commit Add a command "fixup" to rebase --interactive (0205e72)
   1#!/bin/sh
   2
   3# After setting the fake editor with this function, you can
   4#
   5# - override the commit message with $FAKE_COMMIT_MESSAGE,
   6# - amend the commit message with $FAKE_COMMIT_AMEND
   7# - check that non-commit messages have a certain line count with $EXPECT_COUNT
   8# - rewrite a rebase -i script with $FAKE_LINES in the form
   9#
  10#       "[<lineno1>] [<lineno2>]..."
  11#
  12#   If a line number is prefixed with "squash", "fixup", "edit", or
  13#   "reword", the respective line's command will be replaced with the
  14#   specified one.
  15
  16set_fake_editor () {
  17        echo "#!$SHELL_PATH" >fake-editor.sh
  18        cat >> fake-editor.sh <<\EOF
  19case "$1" in
  20*/COMMIT_EDITMSG)
  21        test -z "$FAKE_COMMIT_MESSAGE" || echo "$FAKE_COMMIT_MESSAGE" > "$1"
  22        test -z "$FAKE_COMMIT_AMEND" || echo "$FAKE_COMMIT_AMEND" >> "$1"
  23        exit
  24        ;;
  25esac
  26test -z "$EXPECT_COUNT" ||
  27        test "$EXPECT_COUNT" = $(sed -e '/^#/d' -e '/^$/d' < "$1" | wc -l) ||
  28        exit
  29test -z "$FAKE_LINES" && exit
  30grep -v '^#' < "$1" > "$1".tmp
  31rm -f "$1"
  32cat "$1".tmp
  33action=pick
  34for line in $FAKE_LINES; do
  35        case $line in
  36        squash|fixup|edit|reword)
  37                action="$line";;
  38        *)
  39                echo sed -n "${line}s/^pick/$action/p"
  40                sed -n "${line}p" < "$1".tmp
  41                sed -n "${line}s/^pick/$action/p" < "$1".tmp >> "$1"
  42                action=pick;;
  43        esac
  44done
  45EOF
  46
  47        test_set_editor "$(pwd)/fake-editor.sh"
  48        chmod a+x fake-editor.sh
  49}