]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - gitconfig.m4
2d70efbb0fedd610cb171c96c71bfead3c80e489
[config/dotfiles.git] / gitconfig.m4
1 # Global Git configuration file.
2
3 # Copyright (C) 2011-2012  Simon Ruderich
4 #
5 # This file is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This file is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this file.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 dnl Load m4 macros.
20 include(../lib.m4)
21
22 [user]
23         name = Simon Ruderich
24         email = simon@ruderich.org
25
26 [color]
27         ui = auto
28
29 [color "diff"]
30         # Meta information.
31         meta = yellow bold
32         # Hunk header.
33         frag = magenta bold
34         # Function in hunk header.
35         function = magenta bold
36         # Removed lines.
37         old = red bold
38         # Added lines.
39         new = green bold
40         # Commit headers.
41         commit = cyan
42
43 [core]
44         editor = vim
45         # Can't use ~/ because of older git versions.
46         excludesfile = GITIGNORE
47
48 # Use pager for the following commands.
49 [pager]
50         status = yes
51         tag = yes
52
53 [alias]
54         # Shortcuts for often used commands.
55         #
56         # Local.
57         c   = commit --verbose
58         ci  = commit --verbose
59         d   = diff --patience
60         di  = diff --patience
61         dw  = diff --patience --color-words
62         dc  = diff --patience --cached
63         dcw = diff --patience --cached --color-words
64         s   = status
65         st  = status
66         l   = log
67         ls  = log --stat
68         lp  = log --patch --patience
69         a   = add
70         ap  = add --patch
71         au  = add --update
72         # Branches.
73         co  = checkout
74         b   = branch --all --verbose
75         br  = branch --all --verbose
76         m   = merge
77         me  = merge
78         # Remote.
79         f   = fetch
80         fe  = fetch
81         t   = tag
82         p   = push
83         pu  = push
84         ru  = remote update
85         # Patches.
86         fp  = format-patch
87         # Misc.
88         fs  = fsck --strict --full
89         sl  = stash list
90         ss  = stash save
91         sa  = stash apply
92         ssk = stash save --keep-index
93
94         # Custom commands.
95         #
96         # tig-like log view.
97         glog = log --pretty=oneline --graph --all
98
99 [diff]
100         # Detect copies and renames.
101         renames = copy
102
103 # Allow diffing of some binary files.
104 # `pdftotext-` is a wrapper around pdftotext which writes to stdout.
105 # `sqlite3dump` is a wrapper calling `sqlite3 database-file .dump`.
106 [diff "gzip"]
107         textconv = gzip -d -c
108 [diff "pdf"]
109         textconv = pdftotext-
110 [diff "sqlite"]
111         textconv = sqlite3dump
112
113 [merge]
114 IF(OS, darwin)
115         tool = opendiff
116 FI
117 IF(OS, debian)
118         tool = vimdiff
119 FI
120
121 [format]
122         # When using git format-patch use threads and add all patches as
123         # replies to the first one.
124         thread = shallow
125
126 # vim: ft=gitconfig