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