]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - gitconfig.m4
75cd32799908909d24d3d992bb3916b7e89045a8
[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         # Global gitattributes file. Thanks to canton7 in #git on Freenode
46         # (2011-11-09 13:23 CET).
47         attributesfile = PWD/gitattributes
48
49 # Use pager for the following commands.
50 [pager]
51         status = yes
52         tag = yes
53
54 [interactive]
55         # Don't require <Return> in interactive commands which require only a
56         # single key, for example `git add --patch`.
57         singlekey = yes
58
59 [alias]
60         ## Shortcuts for often used commands.
61         #
62         ## Local.
63         c   = commit --verbose
64         ci  = commit --verbose
65         ca  = commit --verbose --amend
66         cad = commit --verbose --amend --date=
67         d   = diff PATIENCE
68         di  = diff PATIENCE
69         dw  = diff PATIENCE --color-words
70         dc  = diff PATIENCE --cached
71         dcw = diff PATIENCE --cached --color-words
72         s   = status
73         st  = status
74         l   = log
75         ls  = log --stat
76         lp  = log --patch PATIENCE
77         lpw = log --patch PATIENCE --color-words
78         a   = add
79         ap  = add --patch
80         au  = add --update
81         ## Branches.
82         co  = checkout
83         b   = branch -a -v
84         br  = branch -a -v
85         m   = merge
86         me  = merge
87         mo  = merge origin/master
88         ## Remote.
89         f   = fetch
90         fe  = fetch
91         t   = tag
92         p   = push
93         pu  = push
94         # Parallel git remote update. Also strips unnecessary output.
95         ru = "! git remote \
96               | xargs -d '\\n' -n1 -P0 git remote update 2>&1 \
97               | sed '/^$/d; \
98                      /^Please make sure you have the correct access rights$/d; \
99                      /^and the repository exists\\.$/d;'"
100         # Push to all remotes. Thanks to albel727 in #git on Freenode
101         # (2011-06-04 16:06 CEST) for the idea. Modified to push in parallel
102         # and to strip unnecessary output.
103         rp = "! git remote \
104               | xargs -d '\\n' -n1 -P0 git push 2>&1 \
105               | sed '/^$/d; \
106                      /^Please make sure you have the correct access rights$/d; \
107                      /^and the repository exists\\.$/d;'"
108         ## Patches.
109         fp  = format-patch
110         ## Maintenance.
111         # (Redirection of stderr is necessary to prevent missing output with
112         # my "color stderr" solution in Zsh.)
113         fs  = ! git fsck --strict --full 2>&1
114         fg  = ! git fs && git gc --aggressive 2>&1 # fsck and compress repo
115         ## Misc.
116         sl  = stash list
117         ss  = stash save
118         ssk = stash save --keep-index
119         sa  = stash apply
120         sp  = stash pop
121
122         ## Custom commands.
123         #
124         # tig-like log view. Similar to the following but with author/date
125         # information. --pretty=format is not used because it doesn't allow
126         # precise enough control over formats and colors.
127         #
128         # tig = log --pretty=oneline --graph --all --decorate --abbrev-commit
129         tig = ! PWD/bin/tig.pl
130
131         # Create backup of uncommitted and untracked changes.
132         ssb = "! git stash save --include-untracked \
133                                 \"Backup on $(date -R)\" >/dev/null \
134               && git stash apply >/dev/null"
135
136         # Display list and content of untracked files. Untracked directories
137         # and symbolic links are only listed.
138         u = "! git ls-files --other --exclude-standard --directory -z \
139              | xargs -0 sh -c '\
140                    for x; do \
141                        printf \"\\033[1;33m-> %s\\033[0m:\" \"$x\"; \
142                        if test -d \"$x\"; then \
143                            echo \" directory\"; \
144                        elif test -h \"$x\"; then \
145                            echo \" symbolic link\"; \
146                        else \
147                            echo; \
148                            cat \"$x\"; \
149                        fi; \
150                        echo; \
151                    done' argv0 \
152              | less"
153
154 [diff]
155         # Detect copies and renames.
156         renames = copy
157
158         # Change the definition of a word as used by diff --color-words to be
159         # shorter (not only spaces) and thus simplify the generated diffs.
160         # Words ([a-zA-Z0-9_]+) are matched, or a single non-word character
161         # ([^a-zA-Z0-9_]), therefore changes to words are shown in complete
162         # (e.g. from "word" to "newword" as "[-word-]{+newword+}"), but
163         # changes to non-word characters are shown character wise (e.g. from
164         # "==" to "!=" as "[-=-]{+!+}="); [-..-] is removal, {+..+} is
165         # addition. See t/ for some tests and examples.
166         wordregex = [a-zA-Z0-9_]+|[^a-zA-Z0-9_]
167
168 # Allow diffing of some binary files.
169 #
170 # `pdftotext-` is a wrapper around pdftotext which writes to stdout.
171 # `sqlite3dump` is a wrapper calling `sqlite3 database-file .dump`.
172 [diff "gzip"]
173         textconv = gzip -d -c
174 [diff "pdf"]
175         textconv = PWD/bin/pdftotext-
176 [diff "sqlite"]
177         textconv = PWD/bin/sqlite3dump
178
179 [merge]
180 IF(OS, darwin)
181         tool = opendiff
182 FI
183 IF(OS, debian)
184         tool = vimdiff
185 FI
186
187 [format]
188         # When using git format-patch use threads and add all patches as
189         # replies to the first one.
190         thread = shallow
191
192 [transfer]
193         # Automatically fsck objects when receiving them (respected by git
194         # receive-pack and git fetch (>= 1.7.8, for fetch)).
195         fsckobjects = true
196
197 # vim: ft=gitconfig