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