feat(git): provide a git commit template

used https://devtutorial.io/how-to-create-a-template-commit-message-git-p1244.html
Template is for conventional commits, https://www.conventionalcommits.org/en/v1.0.0/
This commit is contained in:
Conner McCall 2020-08-19 14:05:21 -05:00
parent e9087734b7
commit 124c7b48ed
3 changed files with 8 additions and 0 deletions

5
.git-commit-message Normal file
View file

@ -0,0 +1,5 @@
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]

View file

@ -15,3 +15,5 @@
remotereset = reset --hard @{u}
[credential]
helper = osxkeychain
[commit]
template = /Users/conner/.git-commit-message

1
.gitignore vendored
View file

@ -14,3 +14,4 @@
!config/*
!bin/*
!bin
!.git-commit-message