8
8
# - check that non-commit messages have a certain line count with $EXPECT_COUNT
9
9
# - check the commit count in the commit message header with $EXPECT_HEADER_COUNT
10
10
# - rewrite a rebase -i script as directed by $FAKE_LINES.
11
- # $FAKE_LINES consists of a sequence of words separated by spaces.
12
- # The following word combinations are possible:
11
+ # $FAKE_LINES consists of a sequence of words separated by spaces;
12
+ # spaces inside the words are encoded as underscores.
13
+ # The following words are possible:
13
14
#
14
- # "<lineno>" -- add a "pick" line with the SHA1 taken from the
15
- # specified line.
15
+ # "<cmd>" -- override the command for the next line specification. Can be
16
+ # "pick", "squash", "fixup[_-(c|C)]", "edit", "reword", "drop",
17
+ # "merge[_-(c|C)_<rev>]", or "bad" for an invalid command.
16
18
#
17
- # "<cmd> < lineno>" -- add a line with the specified command
18
- # ("pick", "squash", "fixup"|"fixup_-C"|"fixup_-c", "edit", "reword" or "drop")
19
- # and the SHA1 taken from the specified line.
19
+ # "<lineno>" -- add a command, using the specified line as a template.
20
+ # If the command has not been overridden, the line will be copied
21
+ # verbatim, usually resulting in a "pick" line.
20
22
#
21
- # "_" -- add a space, like "fixup_-C" implies "fixup -C" and
22
- # "exec_cmd_with_args" add an "exec cmd with args" line.
23
+ # "fakesha" -- add a command ("pick" by default), using a fake SHA1.
24
+ #
25
+ # "exec_[command...]", "break" -- add the specified command.
23
26
#
24
27
# "#" -- Add a comment line.
25
28
#
@@ -49,7 +52,7 @@ set_fake_editor () {
49
52
action=\&
50
53
for line in $FAKE_LINES ; do
51
54
case $line in
52
- pick|p|squash|s|fixup|f|edit|e|reword|r|drop|d|label|l|reset|r |merge|m)
55
+ pick|p|squash|s|fixup|f|edit|e|reword|r|drop|d|label|l|reset|t |merge|m)
53
56
action="$line ";;
54
57
exec_*|x_*|break|b)
55
58
echo "$line " | sed 's/_/ /g' >> "$1 ";;
@@ -64,7 +67,7 @@ set_fake_editor () {
64
67
fakesha)
65
68
test \& != "$action " || action=pick
66
69
echo "$action XXXXXXX False commit" >> "$1 "
67
- action=pick ;;
70
+ action=\& ;;
68
71
*)
69
72
sed -n "${line} s/^[a-z][a-z]*/$action /p" < "$1 ".tmp >> "$1 "
70
73
action=\&;;
0 commit comments