DEV Community

Discussion on: A guide on commit messages

Collapse
 
suckup_de profile image
Lars Moelleken

You can share your git commit conventions in the team via e.g.:

add this into your "~/.gitconfig"-file

[commit]
  template = ~/.gitmessage

example: github.com/voku/dotfiles/blob/mast...

Collapse
 
yvonnickfrin profile image
🦁 Yvonnick FRIN

Waouh! Didn't know about it, thank you for sharing!

Collapse
 
stephencweiss profile image
Stephen Charles Weiss

Just to confirm - this is a template, but does not act as a linter, correct? So, you could pair this with something like commitlint (github.com/conventional-changelog/...)