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