From 51fb3a3dfa4ffeeb210fb0e7d6f631503a5a1dfb Mon Sep 17 00:00:00 2001 From: Ralf Thielow Date: Thu, 10 Jan 2013 18:45:59 +0100 Subject: commit: make default of "cleanup" option configurable The default of the "cleanup" option in "git commit" is not configurable. Users who don't want to use the default have to pass this option on every commit since there's no way to configure it. This commit introduces a new config option "commit.cleanup" which can be used to change the default of the "cleanup" option in "git commit". Signed-off-by: Ralf Thielow Signed-off-by: Junio C Hamano --- t/t7500/add-content-and-comment | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 t/t7500/add-content-and-comment (limited to 't/t7500/add-content-and-comment') diff --git a/t/t7500/add-content-and-comment b/t/t7500/add-content-and-comment new file mode 100755 index 0000000000..c4dccff13a --- /dev/null +++ b/t/t7500/add-content-and-comment @@ -0,0 +1,5 @@ +#!/bin/sh +echo "commit message" >> "$1" +echo "# comment" >> "$1" +exit 0 + -- cgit v1.2.1