This patch allows people to set commit.verbose to implicitly send --verbose to git-commit. It also introduces --no-verbose to override the configuration setting. This version incorporates changes suggested by Eric Sunshine, Duy Nguyen, and Jeremiah Mahler. It introduces several cleanup patches to t/t7505-commit-verbose.sh to bring it closer to the current state of the tests as Eric has explained them to me, then adds the verbose config and --no-verbose flag. Since the last version of this patch (http://marc.info/?l=git&m=140113063517118&w=2), I've made the following changes: * Remove the $PWD => $(pwd) change, as it was a misunderstanding of t/README (Thank you to Johannes and David for pointing that out and clarifying) * Use consistent test naming (Thanks to Jeremiah) * Switch from <<-EOF to <<-'EOF' without manual escaping in write_script calls for the test editors check-for-diff and check-for-no-diff. The proposed <<-\EOF syntax did not properly prevent the parameter substitution on my machine, as both Eric and the documentation suggested it should, but the quoted version seems to work fine. (Thanks to Eric) * Fix extra test_set_editor invocations and broken %%-chains created as a result of the test_set_editor changes. (Thanks again to Eric) ------------------------------------------------------ Caleb Thompson (4): commit test: Use test_config instead of git-config commit test: Use write_script commit test: test_set_editor in each test commit: support commit.verbose and --no-verbose Documentation/config.txt | 5 +++++ Documentation/git-commit.txt | 8 +++++++- builtin/commit.c | 6 +++++- contrib/completion/git-completion.bash | 1 + t/t7507-commit-verbose.sh | 64 +++++++++++++++++++++++++++++++++++++++++++++++----------------- 5 files changed, 65 insertions(+), 19 deletions(-) -- 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