From 441d274ad7e9b8cbb8e3682a1e33adc09d8afa6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eberhard=20Gr=C3=A4ther?= Date: Tue, 4 Feb 2014 00:12:58 +0100 Subject: [PATCH] setup: added commit message template This change adds the commit message template in file .git_commit_message.txt. It will be used after once running: $ git config commit.template .git_commit_message.txt reviewer= review url= --- .git_commit_template.txt | 11 +++++++++++ README.md | 7 +++++++ 2 files changed, 18 insertions(+) create mode 100644 .git_commit_template.txt diff --git a/.git_commit_template.txt b/.git_commit_template.txt new file mode 100644 index 00000000..7b7d9019 --- /dev/null +++ b/.git_commit_template.txt @@ -0,0 +1,11 @@ +: + +<description> + +reviewer= +review url= + +#bug= +#test= + +# line length limit ------------------------------------------------------------ diff --git a/README.md b/README.md index b2153981..8747371c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ ### Masterproject ### +#### Setup #### + +Define commit message template: +$ git config commit.template .git_commit_template.txt + +Enable git commandline colors: +$ git config color.ui true