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