From e76353252393031826f5d45d5b82eed88be8c413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eberhard=20Gr=C3=A4ther?= Date: Tue, 4 Feb 2014 00:28:32 +0100 Subject: [PATCH] setup: added setup.sh script The setup.sh script is responsible for setting up the environment including all configurations. reviewer= review url= --- README.md | 5 +++++ script/setup.sh | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100755 script/setup.sh diff --git a/README.md b/README.md index 8747371c..b0b5637c 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ #### Setup #### +Run setup script: +$ ./script/setup.sh + +Or + Define commit message template: $ git config commit.template .git_commit_template.txt diff --git a/script/setup.sh b/script/setup.sh new file mode 100755 index 00000000..cf8b661a --- /dev/null +++ b/script/setup.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# Define commit message template: +git config commit.template .git_commit_template.txt + +# Enable git commandline colors: +git config color.ui true + +echo "setup complete"