diff options
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 |