| # After setting the fake editor with this function, you can |
| # - override the commit message with $FAKE_COMMIT_MESSAGE, |
| # - amend the commit message with $FAKE_COMMIT_AMEND |
| # - check that non-commit messages have a certain line count with $EXPECT_COUNT |
| # - rewrite a rebase -i script with $FAKE_LINES in the form |
| # "[<lineno1>] [<lineno2>]..." |
| # If a line number is prefixed with "squash" or "edit", the respective line's |
| # command will be replaced with the specified one. |
| echo "#!$SHELL_PATH" >fake-editor.sh |
| cat >> fake-editor.sh <<\EOF |
| test -z "$FAKE_COMMIT_MESSAGE" || echo "$FAKE_COMMIT_MESSAGE" > "$1" |
| test -z "$FAKE_COMMIT_AMEND" || echo "$FAKE_COMMIT_AMEND" >> "$1" |
| test -z "$EXPECT_COUNT" || |
| test "$EXPECT_COUNT" = $(sed -e '/^#/d' -e '/^$/d' < "$1" | wc -l) || |
| test -z "$FAKE_LINES" && exit |
| grep -v '^#' < "$1" > "$1".tmp |
| for line in $FAKE_LINES; do |
| echo sed -n "${line}s/^pick/$action/p" |
| sed -n "${line}p" < "$1".tmp |
| sed -n "${line}s/^pick/$action/p" < "$1".tmp >> "$1" |
| test_set_editor "$(pwd)/fake-editor.sh" |