3 # After setting the fake editor with this function, you can
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
10 # "[<lineno1>] [<lineno2>]..."
12 # If a line number is prefixed with "squash" or "edit", the respective line's
13 # command will be replaced with the specified one.
16 echo "#!$SHELL_PATH" >fake-editor.sh
17 cat >> fake-editor.sh
<<\EOF
20 test -z "$FAKE_COMMIT_MESSAGE" ||
echo "$FAKE_COMMIT_MESSAGE" > "$1"
21 test -z "$FAKE_COMMIT_AMEND" ||
echo "$FAKE_COMMIT_AMEND" >> "$1"
25 test -z "$EXPECT_COUNT" ||
26 test "$EXPECT_COUNT" = $
(sed -e '/^#/d' -e '/^$/d' < "$1" |
wc -l) ||
28 test -z "$FAKE_LINES" && exit
29 grep -v '^#' < "$1" > "$1".tmp
33 for line
in $FAKE_LINES; do
38 echo sed -n "${line}s/^pick/$action/p"
39 sed -n "${line}p" < "$1".tmp
40 sed -n "${line}s/^pick/$action/p" < "$1".tmp
>> "$1"
46 test_set_editor
"$(pwd)/fake-editor.sh"
47 chmod a
+x fake-editor.sh