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:
parent
e9087734b7
commit
124c7b48ed
3 changed files with 8 additions and 0 deletions
5
.git-commit-message
Normal file
5
.git-commit-message
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<type>[optional scope]: <description>
|
||||
|
||||
[optional body]
|
||||
|
||||
[optional footer(s)]
|
||||
|
|
@ -15,3 +15,5 @@
|
|||
remotereset = reset --hard @{u}
|
||||
[credential]
|
||||
helper = osxkeychain
|
||||
[commit]
|
||||
template = /Users/conner/.git-commit-message
|
||||
|
|
|
|||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -14,3 +14,4 @@
|
|||
!config/*
|
||||
!bin/*
|
||||
!bin
|
||||
!.git-commit-message
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue