(add): Adding commit conventions and gitconfig

This commit is contained in:
Blake Ridgway 2021-02-13 17:22:35 -06:00
parent 0f2d96b422
commit 72000c42ed
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,28 @@
# ----------------------------------------------------------
# Header - (type): Brief description
# ----------------------------------------------------------
# * feat A new feature
# * fix A bug fix
# * docs Changes to documentation only
# * style Style/format changes (whitespace, etc.)
# * refactor Changes not related to a bug or feature
# * perf Changes that affects performance
# * test Changes that add/modify/correct tests
# * build Changes to build system (configs, etc.)
# * ci Changes to CI pipeline/workflow
# ----------------------------------------------------------
# ----------------------------------------------------------
# Body - More detailed description, if necessary
# ----------------------------------------------------------
# * Motivation behind changes, more detail into how
# functionality might be affected, etc.
# ----------------------------------------------------------
# ----------------------------------------------------------
# Footer - Associated issues, PRs, etc.
# ----------------------------------------------------------
# * Ex: Resolves Issue #207, see PR #15, etc.
# ----------------------------------------------------------

7
dotfiles/gitconfig Normal file
View file

@ -0,0 +1,7 @@
[user]
email = blake@blakeridgway.dev
name = Blake Ridgway
[commit]
template = /home/bridgway/dotfiles/commit-conventions.txt
[core]
editor = nvim +14 -c +startinsert