Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 551 Bytes

TECHNICAL-SETUP.md

File metadata and controls

22 lines (15 loc) · 551 Bytes

Technical Setup

Setup git hooks for Conventional Commit

  1. Install pre-commit
  2. Run this command:
$ pre-commit install --hook-type commit-msg
  1. (Optional for macOS users) Install GNU grep:
  2. Run brew install grep
  3. Add this line to your shell profile:
export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH"

Now, whenever you make a commit, the pre-commit hook will be run to check if the commit message conforms Conventional Commit rule.