Skip to content

Commit

Permalink
templates: Use heredoc in pre-commit hook
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Richard Hartmann authored and Junio C Hamano committed Jul 15, 2013
1 parent 0da7a53 commit 27b6e17
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions templates/hooks--pre-commit.sample
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 27b6e17

Please sign in to comment.