office-gobmx/.git-hooks
Adlair Cerecedo-Mendez 768751a831 Fonts added
Change-Id: I32fb8011dd391d35c34627713cb38e5432927c7e
2024-03-12 05:34:07 +00:00
..
commit-msg Restore .git-hooks/commit-msg 2023-03-08 10:37:00 +00:00
post-merge
pre-commit Fonts added 2024-03-12 05:34:07 +00:00
README git-hooks: better handling in './g -z' with win-links 2023-03-22 10:44:24 +00: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/* ./
  
When you using GIT for Windows, you need Windows links
Open a Dos-Box with admin rights then
  cd .git/hooks
  FOR /F " usebackq " %i IN (`dir /b ..\..\.git-hooks`) DO del /as /f %i & del %i & mklink %i ..\..\.git-hooks\%i
the error 'Could Not Find ...' can be ignore

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 ]