Hi, On Wed, May 09, 2007 at 03:57:28PM CEST, Johannes Schindelin wrote: > Another reason is that you can see how the end result will look like in an > editor. For example, you'll have a hard time making sure in the > command line that the lines are no longer than 76 characters. oh, indeed - good point. cg-commit uses fmt to format the message, I think git-commit should do the same; let's see how controversial such a change would be. --- This makes git-commit filter log messages provided on commandline by fmt, thus making nice paragraphs from them. This makes it possible to specify even long commit messages on command line without worrying about this, akin to cg-commit. Signed-off-by: Petr Baudis <pasky@xxxxxxx> --- git-commit.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/git-commit.sh b/git-commit.sh index f28fc24..28cbb55 100755 --- a/git-commit.sh +++ b/git-commit.sh @@ -432,7 +432,7 @@ fi if test "$log_message" != '' then - echo "$log_message" + echo "$log_message" | fmt elif test "$logfile" != "" then if test "$logfile" = - -- Petr "Pasky" Baudis Stuff: http://pasky.or.cz/ Ever try. Ever fail. No matter. // Try again. Fail again. Fail better. -- Samuel Beckett - 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