]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - gitconfig.m4
git: No need to create .gitignore.
[config/dotfiles.git] / gitconfig.m4
1 [user]
2         name = Simon Ruderich
3         email = simon@ruderich.org
4
5 [color]
6         ui = auto
7
8 [core]
9         editor = vim
10         excludesfile = GITIGNORE
11
12 [alias]
13         # Shortcuts for often used commands.
14         ci = commit -v
15         di = diff
16         st = status
17         co = checkout
18         br = branch
19         me = merge
20         # Custom commands.
21         glog = log --pretty=oneline --graph --all
22
23 [merge]
24 IF(OS, darwin)
25         tool = opendiff
26 FI
27
28 # vim: ft=gitconfig