summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorRichard Hartmann <richih.mailinglist@gmail.com>2013-07-14 16:21:14 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-07-15 16:51:16 (GMT)
commit27b6e17a6d84a18861f05fd7c684ab443bf15244 (patch)
tree7f9f8dff16b5504150c3dd4d84a72dd2db7acf1a /templates
parent0da7a53a76b48ea1b2ee6ebe7bd7fbcd7d5c3f9d (diff)
downloadgit-27b6e17a6d84a18861f05fd7c684ab443bf15244.zip
git-27b6e17a6d84a18861f05fd7c684ab443bf15244.tar.gz
git-27b6e17a6d84a18861f05fd7c684ab443bf15244.tar.bz2
templates: Use heredoc in pre-commit hook
This way, it is easier to see how the text we give the end users would look like, and it will allow us to use (near) full width of the source file. Signed-off-by: Richard Hartmann <richih.mailinglist@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'templates')
-rwxr-xr-xtemplates/hooks--pre-commit.sample25
1 files changed, 13 insertions, 12 deletions
diff --git a/templates/hooks--pre-commit.sample b/templates/hooks--pre-commit.sample
index 18c4829..5558caa 100755
--- a/templates/hooks--pre-commit.sample
+++ b/templates/hooks--pre-commit.sample
@@ -31,18 +31,19 @@ if [ "$allownonascii" != "true" ] &&
test $(git diff --cached --name-only --diff-filter=A -z $against |
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
then
- echo "Error: Attempt to add a non-ascii file name."
- echo
- echo "This can cause problems if you want to work"
- echo "with people on other platforms."
- echo
- echo "To be portable it is advisable to rename the file ..."
- echo
- echo "If you know what you are doing you can disable this"
- echo "check using:"
- echo
- echo " git config hooks.allownonascii true"
- echo
+ cat <<\EOF
+Error: Attempt to add a non-ascii file name.
+
+This can cause problems if you want to work
+with people on other platforms.
+
+To be portable it is advisable to rename the file.
+
+If you know what you are doing you can disable this
+check using:
+
+ git config hooks.allownonascii true
+EOF
exit 1
fi