From 72000c42ed5083321f4166fb88117763cec4268c Mon Sep 17 00:00:00 2001 From: Blake Ridgway Date: Sat, 13 Feb 2021 17:22:35 -0600 Subject: [PATCH] (add): Adding commit conventions and gitconfig --- dotfiles/commit-conventions.txt | 28 ++++++++++++++++++++++++++++ dotfiles/gitconfig | 7 +++++++ 2 files changed, 35 insertions(+) create mode 100644 dotfiles/commit-conventions.txt create mode 100644 dotfiles/gitconfig diff --git a/dotfiles/commit-conventions.txt b/dotfiles/commit-conventions.txt new file mode 100644 index 0000000..caf57c1 --- /dev/null +++ b/dotfiles/commit-conventions.txt @@ -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. +# ---------------------------------------------------------- diff --git a/dotfiles/gitconfig b/dotfiles/gitconfig new file mode 100644 index 0000000..87c356a --- /dev/null +++ b/dotfiles/gitconfig @@ -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