]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - gitconfig.m4
tig.pl: Add, tig-like log view.
[config/dotfiles.git] / gitconfig.m4
1 # Global Git configuration file.
2
3 # Copyright (C) 2011-2013  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 -a -v
75         br  = branch -a -v
76         m   = merge
77         me  = merge
78         mo  = merge origin/master
79         ## Remote.
80         f   = fetch
81         fe  = fetch
82         t   = tag
83         p   = push
84         pu  = push
85         # Parallel git remote update. Also strips unnecessary output.
86         ru = "! git remote \
87               | xargs -d '\\n' -n1 -P0 git remote update 2>&1 \
88               | sed '/^$/d; \
89                      /^Please make sure you have the correct access rights$/d; \
90                      /^and the repository exists\\.$/d;'"
91         # Push to all remotes. Thanks to albel727 in #git on Freenode
92         # (2011-06-04 16:06 CEST) for the idea. Modified to push in parallel
93         # and to strip unnecessary output.
94         rp = "! git remote \
95               | xargs -d '\\n' -n1 -P0 git push 2>&1 \
96               | sed '/^$/d; \
97                      /^Please make sure you have the correct access rights$/d; \
98                      /^and the repository exists\\.$/d;'"
99         ## Patches.
100         fp  = format-patch
101         ## Maintenance.
102         # (Redirection of stderr is necessary to prevent missing output with
103         # my "color stderr" solution in Zsh.)
104         fs  = ! git fsck --strict --full 2>&1
105         fg  = ! git fs && git gc --aggressive 2>&1 # fsck and compress repo
106         ## Misc.
107         sl  = stash list
108         ss  = stash save
109         ssk = stash save --keep-index
110         sa  = stash apply
111         sp  = stash pop
112
113         ## Custom commands.
114         #
115         # tig-like log view. Similar to the following but with author/date
116         # information. --pretty=format is not used because it doesn't allow
117         # precise enough control over formats and colors.
118         #
119         # tig = log --pretty=oneline --graph --all --decorate --abbrev-commit
120         tig = ! TIG | less
121
122 [diff]
123         # Detect copies and renames.
124         renames = copy
125
126         # Change the definition of a word as used by diff --color-words to be
127         # shorter (not only spaces) and thus simplify the generated diffs.
128         # Words ([a-zA-Z0-9_]+) are matched, or a single non-word character
129         # ([^a-zA-Z0-9_]), therefore changes to words are shown in complete
130         # (e.g. from "word" to "newword" as "[-word-]{+newword+}"), but
131         # changes to non-word characters are shown character wise (e.g. from
132         # "==" to "!=" as "[-=-]{+!+}="); [-..-] is removal, {+..+} is
133         # addition. See t/ for some tests and examples.
134         wordregex = [a-zA-Z0-9_]+|[^a-zA-Z0-9_]
135
136 # Allow diffing of some binary files.
137 #
138 # `pdftotext-` is a wrapper around pdftotext which writes to stdout.
139 # `sqlite3dump` is a wrapper calling `sqlite3 database-file .dump`.
140 [diff "gzip"]
141         textconv = gzip -d -c
142 [diff "pdf"]
143         textconv = pdftotext-
144 [diff "sqlite"]
145         textconv = sqlite3dump
146
147 [merge]
148 IF(OS, darwin)
149         tool = opendiff
150 FI
151 IF(OS, debian)
152         tool = vimdiff
153 FI
154
155 [format]
156         # When using git format-patch use threads and add all patches as
157         # replies to the first one.
158         thread = shallow
159
160 [receive]
161         # Automatically fsck objects when receiving them (respected by git
162         # receive-pack and git fetch (>= 1.7.8, for fetch)).
163         fsckobjects = true
164
165 # vim: ft=gitconfig noet