(add): Adding commit conventions and gitconfig
This commit is contained in:
28
dotfiles/commit-conventions.txt
Normal file
28
dotfiles/commit-conventions.txt
Normal 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
7
dotfiles/gitconfig
Normal 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
|
||||||
Reference in New Issue
Block a user