From a4d257932a371fb62a85cb58cd9b68a4d3162058 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 10 May 2020 10:00:36 +0300 Subject: feat(git): change commit template to suggest conventional commits https://www.conventionalcommits.org/en/v1.0.0/ --- git-commit-template | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/git-commit-template b/git-commit-template index 656b83e..5c29588 100644 --- a/git-commit-template +++ b/git-commit-template @@ -1,5 +1,28 @@ # If applied this commit will... -Add/Fix/Drop/Change/Refactor/Document: whatever + +[optional scope]: + +[optional body] + +[optional footer(s)] + +# https://www.conventionalcommits.org/en/v1.0.0/ +# feat: new feature +# fix: bug fix +# fix(parse): a bug fix to the parser +# feat!: this feature breaks something +# build: +# chore: +# ci: +# docs: +# style: +# refactor: +# perf: +# test: +# +# footers: +# BREAKING-CHANGE: for anything that breaks semver major version +# Closes: #id # Why is it necessary? (Bug fix, feature, improvements?) -- cgit v1.2.1