setup: added setup.sh script

The setup.sh script is responsible for setting up the environment
including all configurations.

reviewer=
review url=
This commit is contained in:
Eberhard Gräther
2014-02-04 00:28:32 +01:00
parent 441d274ad7
commit e763532523
2 changed files with 14 additions and 0 deletions
+5
View File
@@ -2,6 +2,11 @@
#### Setup ####
Run setup script:
$ ./script/setup.sh
Or
Define commit message template:
$ git config commit.template .git_commit_template.txt
+9
View File
@@ -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"