I wonder if this is a sensible thing to do, regardless of the issue of commit log message that contains anything. The patch replaces git-rebase with git-rebase--interactive. The only difference from the existing "git-rebase -i" is if the command is called without "-i" the initial "here is the to-do list. please rearrange the lines, modify 'pick' to 'edit' or whatever as appropriate" step is done without letting the user edit the list. --- Makefile | 2 +- git-rebase--interactive.sh => git-rebase.sh | 14 ++++++++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 0d5590f..f0e5e38 100644 --- a/Makefile +++ b/Makefile @@ -214,7 +214,7 @@ SCRIPT_SH = \ git-clean.sh git-clone.sh git-commit.sh \ git-ls-remote.sh \ git-merge-one-file.sh git-mergetool.sh git-parse-remote.sh \ - git-pull.sh git-rebase.sh git-rebase--interactive.sh \ + git-pull.sh git-rebase.sh \ git-repack.sh git-request-pull.sh \ git-sh-setup.sh \ git-am.sh \ diff --git a/git-rebase--interactive.sh b/git-rebase.sh similarity index 98% rename from git-rebase--interactive.sh rename to git-rebase.sh index 76dc679..1dd6f6d 100755 --- a/git-rebase--interactive.sh +++ b/git-rebase.sh @@ -11,7 +11,7 @@ # http://article.gmane.org/gmane.comp.version-control.git/22407 USAGE='(--continue | --abort | --skip | [--preserve-merges] [--verbose] - [--onto <branch>] <upstream> [<branch>])' + [--interactive] [--onto <branch>] <upstream> [<branch>])' . git-sh-setup require_work_tree @@ -25,6 +25,7 @@ REWRITTEN="$DOTEST"/rewritten PRESERVE_MERGES= STRATEGY= VERBOSE= +INTERACTIVE= test -d "$REWRITTEN" && PRESERVE_MERGES=t test -f "$DOTEST"/strategy && STRATEGY="$(cat "$DOTEST"/strategy)" test -f "$DOTEST"/verbose && VERBOSE=t @@ -346,6 +347,9 @@ do_rest () { while test $# != 0 do case "$1" in + --interactive|-i) + INTERACTIVE=t + ;; --continue) comment_for_reflog continue @@ -504,9 +508,11 @@ EOF die_abort "Nothing to do" cp "$TODO" "$TODO".backup - git_editor "$TODO" || - die "Could not execute editor" - + case "$INTERACTIVE" in + t) + git_editor "$TODO" || die "Could not execute editor" + ;; + esac has_action "$TODO" || die_abort "Nothing to do" - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html