README.txt 554 B

12345678910111213
  1. These files are GIT HOOKS.
  2. A git hook is a a script which is executed when a git command is run.
  3. The hook in this folder is executed when commiting (pre-commit).
  4. pre-commit executes the unit tests before commiting the changes.
  5. ACHTUNG!
  6. Changes will still be commited and pushed even if there are errors in the test (for now at least).
  7. So please pay attention to the tests an make sure that they ran without any problems. If the test
  8. failed, please fix the issue before pushing the changes!
  9. To use it please copy the files into your .git/hooks folder.