1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-21 15:06:31 +02:00

sample pre-commit hook: use --bool when retrieving config var

Currently if you set

	[hooks]
		allowNonAscii

(or allownonascii = 1, or = yes) in your .git/config then the sample
pre-commit misinterprets the value as "false" and rejects non-ASCII
filenames.  Use "git config --bool" to get the usual nicer boolean
handling.

Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
This commit is contained in:
Johan Herland 2013-09-24 09:52:56 +02:00 committed by Jonathan Nieder
parent debce6ac2a
commit af1748b31e

View File

@ -16,7 +16,7 @@ else
fi
# If you want to allow non-ASCII filenames set this variable to true.
allownonascii=$(git config hooks.allownonascii)
allownonascii=$(git config --bool hooks.allownonascii)
# Redirect output to stderr.
exec 1>&2