]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - gitconfig.m4
git: Add fs command.
[config/dotfiles.git] / gitconfig.m4
1 # Global Git configuration file.
2
3
4 dnl Load m4 macros.
5 include(../lib.m4)
6
7 [user]
8         name = Simon Ruderich
9         email = simon@ruderich.org
10
11 [color]
12         ui = auto
13
14 [core]
15         editor = vim
16         excludesfile = GITIGNORE
17
18 [alias]
19         # Shortcuts for often used commands.
20         ci = commit -v
21         di = diff
22         st = status
23         co = checkout
24         br = branch
25         me = merge
26         # Custom commands.
27         fs = fsck --strict --full
28         glog = log --pretty=oneline --graph --all
29
30 [merge]
31 IF(OS, darwin)
32         tool = opendiff
33 FI
34
35 # vim: ft=gitconfig