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