From fd9b30293e951048ff1b6d16558d90a0a6b2affe Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Wed, 9 Oct 2019 22:07:12 +0100
Subject: [PATCH] Add gitmessage

Adds a default commit template wtih some helpful reminders for
writing good commit messages.
---
 tag-git/gitconfig  |  1 +
 tag-git/gitmessage | 16 ++++++++++++++++
 2 files changed, 17 insertions(+)
 create mode 100644 tag-git/gitmessage

diff --git a/tag-git/gitconfig b/tag-git/gitconfig
index f961b669..14319fb7 100644
--- a/tag-git/gitconfig
+++ b/tag-git/gitconfig
@@ -46,6 +46,7 @@
 	untracked = cyan
 
 [commit]
+	template = ~/.gitmessage
 	verbose = true
 
 [core]
diff --git a/tag-git/gitmessage b/tag-git/gitmessage
new file mode 100644
index 00000000..91df68da
--- /dev/null
+++ b/tag-git/gitmessage
@@ -0,0 +1,16 @@
+
+
+# 50-character subject line
+#
+# 72-character wrapped longer description. This should answer:
+#
+# * Why was this change necessary?
+# * How does it address the problem?
+# * Are there any side effects?
+#
+# Include a link to the ticket, if any.
+#
+# Add co-authors if you worked on this code with others:
+#
+# Co-authored-by: Full Name <email@example.com>
+# Co-authored-by: Full Name <email@example.com>