An open API service indexing awesome lists of open source software.

https://github.com/mrinjamul/githooks

Git hooks are scripts that run automatically every time a particular event occurs in a Git repository. They let you customize Git's internal behavior and trigger customizable actions at key points in the development life cycle.
https://github.com/mrinjamul/githooks

Last synced: about 1 year ago
JSON representation

Git hooks are scripts that run automatically every time a particular event occurs in a Git repository. They let you customize Git's internal behavior and trigger customizable actions at key points in the development life cycle.

Awesome Lists containing this project

README

          

# git hooks

Git hooks are a way to automatically run a command when certain events happen to a file.

These hooks are useful for things like enforcing code style, enforcing code quality, or enforcing a version control system.

`pre-commit` is a hook that get executed before committing.

`prepare-commit-msg` is a hook that get executed before committing a message.