Skip to content

Latest commit

 

History

History
executable file
·
30 lines (21 loc) · 872 Bytes

README.md

File metadata and controls

executable file
·
30 lines (21 loc) · 872 Bytes

Git pre-commit & commit-msg hooks

  • pre-commit - for checking php syntax and coding standards
  • commit-msg - for checking if commit message contains issue number

Requirements

Setup

Clone this repo to you home dir:

git clone https://github.com/martinssipenko/php-git-hooks.git /home/<username>/php-git-hooks

Allow files to be executed:

chmod -R +x /home/<username>/php-git-hooks/

Create a symlinks:

ln -s /home/<username>/php-git-hooks/pre-commit /home/<username>/<you_repo>/.git/hooks/pre-commit ln -s /home/<username>/php-git-hooks/commit-msg /home/<username>/<you_repo>/.git/hooks/commit-msg

Notes

This script runs only on unix, feel free to modify.