diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2010-01-02 17:41:32 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2010-01-02 17:41:32 +0100 |
commit | 8c90781f33d2ef00864efbf5dce7260fba1b85fc (patch) | |
tree | e7a3ed16b972a9c08bc5190eacc28722ef8e75b3 /.gitconfig |
Initial commit of git configuration
Diffstat (limited to '.gitconfig')
-rw-r--r-- | .gitconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..7ef9ce8 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,22 @@ +[user] + name = Tobias Klauser + email = tklauser@distanz.ch + +[alias] + co = checkout + st = status + ci = commit + br = branch + d = diff + ds = diff --stat + lp = log -p + +[color] + ui = true + diff = auto + branch = auto + status = auto +[color "diff"] + whitespace = red reverse +[core] + whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol |