Mercurial > lasercutter
view graster/hacklab-engraver/.git/hooks/pre-commit.sample @ 21:e72220627685 tip
0.002 inch discrepancy with target. going to test anyway
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 30 Aug 2010 01:19:21 -0400 |
parents | f952052e37b7 |
children |
line wrap: on
line source
1 #!/bin/sh2 #3 # An example hook script to verify what is about to be committed.4 # Called by git-commit with no arguments. The hook should5 # exit with non-zero status after issuing an appropriate message if6 # it wants to stop the commit.7 #8 # To enable this hook, rename this file to "pre-commit".10 if git-rev-parse --verify HEAD >/dev/null 2>&111 then12 against=HEAD13 else14 # Initial commit: diff against an empty tree object15 against=4b825dc642cb6eb9a060e54bf8d69288fbee490416 fi18 # If you want to allow non-ascii filenames set this variable to true.19 allownonascii=$(git config hooks.allownonascii)21 # Cross platform projects tend to avoid non-ascii filenames; prevent22 # them from being added to the repository. We exploit the fact that the23 # printable range starts at the space character and ends with tilde.24 if [ "$allownonascii" != "true" ] &&25 # Note that the use of brackets around a tr range is ok here, (it's26 # even required, for portability to Solaris 10's /usr/bin/tr), since27 # the square bracket bytes happen to fall in the designated range.28 test "$(git diff --cached --name-only --diff-filter=A -z $against |29 LC_ALL=C tr -d '[ -~]\0')"30 then31 echo "Error: Attempt to add a non-ascii file name."32 echo33 echo "This can cause problems if you want to work"34 echo "with people on other platforms."35 echo36 echo "To be portable it is advisable to rename the file ..."37 echo38 echo "If you know what you are doing you can disable this"39 echo "check using:"40 echo41 echo " git config hooks.allownonascii true"42 echo43 exit 144 fi46 exec git diff-index --check --cached $against --