From 91f0d640e246086550e3c3021337e2cd19853ab7 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Thu, 25 Oct 2018 22:01:14 +0100 Subject: [PATCH] .github: Match suggested commit message format to established convention This changes the suggested format for commit messages to match the convention actually used here (no square brackets). --- .github/pull_request_template.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 7c50ac1cd..43e978157 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -59,7 +59,8 @@ Closes #XXX - [ ] Split your contribution into logically separate changes (`git rebase --interactive`). Merge/squash/fixup commits that just fix or amend previous commits. Remove unintended changes & cleanup. See [tutorial](https://www.atlassian.com/git/tutorials/rewriting-history/git-rebase). - [ ] Write short & meaningful commit messages. Review each commit for messages (`git show`). Format: ``` - [topic]: description. < 50 characters total. + topic: description. < 50 characters total. + Longer description. < 70 characters per line ```