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.
- Host: GitHub
- URL: https://github.com/mrinjamul/githooks
- Owner: mrinjamul
- Created: 2022-01-02T06:44:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-02T06:44:32.000Z (over 4 years ago)
- Last Synced: 2025-01-23T12:15:33.126Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.