]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/lib-rebase.sh
Merge branch 'js/rebase-i-break'
[thirdparty/git.git] / t / lib-rebase.sh
index 584604ee63bd193795daa0f9ca4ad62d9a84b197..241f64b09b3773f5a6b35992a40097a298093771 100644 (file)
@@ -14,8 +14,8 @@
 #       specified line.
 #
 #   "<cmd> <lineno>" -- add a line with the specified command
-#       ("squash", "fixup", "edit", "reword" or "drop") and the SHA1 taken
-#       from the specified line.
+#       ("pick", "squash", "fixup", "edit", "reword" or "drop") and the
+#       SHA1 taken from the specified line.
 #
 #   "exec_cmd_with_args" -- add an "exec cmd with args" line.
 #
@@ -47,7 +47,7 @@ set_fake_editor () {
        action=pick
        for line in $FAKE_LINES; do
                case $line in
-               squash|fixup|edit|reword|drop)
+               pick|squash|fixup|edit|reword|drop)
                        action="$line";;
                exec*|break)
                        echo "$line" | sed 's/_/ /g' >> "$1";;