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"