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