]> git.ipfire.org Git - thirdparty/git.git/blobdiff - sequencer.c
cherry-pick: do not error on non-merge commits when '-m 1' is specified
[thirdparty/git.git] / sequencer.c
index e1a4dd15f1a826c7bd1bf4780c8f85c21117c43b..d0fd61b0b3b7994b8527a6a3d7ac778db9f5610a 100644 (file)
@@ -1766,9 +1766,13 @@ static int do_pick_commit(enum todo_command command, struct commit *commit,
                        return error(_("commit %s does not have parent %d"),
                                oid_to_hex(&commit->object.oid), opts->mainline);
                parent = p->item;
-       } else if (0 < opts->mainline)
-               return error(_("mainline was specified but commit %s is not a merge."),
-                       oid_to_hex(&commit->object.oid));
+       } else if (1 < opts->mainline)
+               /*
+                *  Non-first parent explicitly specified as mainline for
+                *  non-merge commit
+                */
+               return error(_("commit %s does not have parent %d"),
+                            oid_to_hex(&commit->object.oid), opts->mainline);
        else
                parent = commit->parents->item;