office-gobmx/.git-hooks
Stephan Bergmann 6cd9bc8aa4 Remove unhelpful "Check for whitespace in front of *'s" from .git-hooks
It was added with 60f200caa4 "git-hooks: Copy them
from the build repo", but I don't see its purpose, and it caused trouble for me
now when trying to commit <https://gerrit.libreoffice.org/67672> "Merge in
Flatpak improvements".

Change-Id: I922b5be87549793466f99db8b12be6081e683292
Reviewed-on: https://gerrit.libreoffice.org/67674
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-02-13 10:24:26 +01:00
..
commit-msg Remove unhelpful "Check for whitespace in front of *'s" from .git-hooks 2019-02-13 10:24:26 +01:00
post-merge git-hooks: post-merge script does not need /bin/bash 2015-02-13 16:40:36 +01:00
pre-commit git hooks: Tell what to do in another problematic submodules case. 2018-11-22 11:53:07 +01:00
README git-hooks: Info how to install them manually. 2015-09-08 14:50:48 +02:00

Git hooks are executable scripts you can place in $GIT_DIR/hooks directory to trigger action at certain points.

To install manually, run:

  cd .git/hooks && ln -s ../../.git-hooks/* ./

There are two groups of these hooks: client side and server side.

The client-side hooks:
are for client operations such as committing and merging.

The server-side hooks:
are for Git server operations such as receiving pushed commits.

See Also [ http://git-scm.com/book/en/Customizing-Git-Git-Hooks ]