On Sat, Nov 05, 2011 at 07:07:35PM +0100, Fernando Vezzosi wrote: > Enabling commit.verbose will make git commit behave as if --verbose was > passed on the command line. > > Reviewed-by: Sverre Rabbelier <srabbelier@xxxxxxxxx> > Signed-off-by: Fernando Vezzosi <buccia@xxxxxxxxx> > --- > Documentation/config.txt | 3 +++ > builtin/commit.c | 4 ++++ > 2 files changed, 7 insertions(+), 0 deletions(-) > > diff --git a/Documentation/config.txt b/Documentation/config.txt > index 5a841da..6826788 100644 > --- a/Documentation/config.txt > +++ b/Documentation/config.txt > @@ -832,6 +832,9 @@ commit.template:: > "{tilde}/" is expanded to the value of `$HOME` and "{tilde}user/" to the > specified user's home directory. > > +commit.verbose:: > + A boolean to enable verbose mode like the --verbose flag does. > + I just tried out this patch, and found that setting commit.verbose to true also affects git commit's behavior when invoked from scripts where you can't pass --verbose to git commit. I.e. the diff to be committed is shown for git revert, interactive rebase's reword or squash commands, or during 'git rebase --continue' after resolving a conflict. I think this should be mentioned both in the commit message and in the documentation. Anyway, I like this change because I have a somewhat convoluted and flaky combination of hooks and editor scripts to do the same, and now I can finally get rid of them. Best, Gábor -- 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