]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vcs/gitconfig.in
Merge branch 'vcs'
[config/dotfiles.git] / vcs / gitconfig.in
1 # Global Git configuration file.
2
3 # Copyright (C) 2011-2017  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         func = blue bold
33         # Removed lines.
34         old = red bold
35         # Added lines.
36         new = green bold
37         # Commit headers.
38         commit = cyan
39
40 [color "grep"]
41         # GNU grep-like colors.
42         filename = magenta
43         linenumber = green
44
45 [core]
46         editor = vim
47         # Global gitattributes file. Thanks to canton7 in #git on Freenode
48         # (2011-11-09 13:23 CET).
49         attributesfile = PWD/gitattributes
50
51 [pager]
52         # Use pager for the following commands.
53         status = true
54         tag = true
55
56 [interactive]
57         # Don't require <Return> in interactive commands which require only a
58         # single key, for example `git add --patch`. Requires Perl module
59         # Term::Readkey.
60         singlekey = true
61
62 [alias]
63         ## Shortcuts for often used commands.
64         #
65         ## Local.
66         c   = commit --verbose
67         ca  = commit --verbose --amend
68         cad = commit --verbose --amend --date=
69         d   = diff
70         dw  = diff --color-words
71         ds  = diff --stat
72         dc  = diff --cached
73         dcw = diff --cached --color-words
74         dcs = diff --cached --stat
75         g   = grep
76         gi  = grep --ignore-case
77         s   = status
78         l   = log
79         ls  = log --stat
80         lp  = log --patch
81         lpw = log --patch --color-words
82         ld  = show --date=short -s --pretty='format:%h (\"%s\", %ad)' # describe
83         a   = add
84         ap  = add --patch
85         au  = add --update
86         rs  = reset
87         rsh = reset --hard
88         rsp = reset --patch
89         rv  = revert
90         cl  = clean -ndx
91         clf = clean -fdx
92         ## Branches.
93         co  = checkout
94         b   = branch -a -v
95         br  = branch
96         m   = merge
97         mo  = merge origin/master
98         re  = rebase
99         rei = rebase --interactive
100         rec = rebase --continue
101         cp  = cherry-pick
102         ## Submodules.
103         sm  = submodule
104         ## Remote.
105         f   = fetch
106         t   = tag
107         p   = push
108         # Parallel git remote update. Also strips unnecessary output.
109         ru = "! git remote \
110               | xargs -d '\\n' -n1 -P0 git remote update 2>&1 \
111               | sed '/^$/d; \
112                      /^Please make sure you have the correct access rights$/d; \
113                      /^and the repository exists\\.$/d;'"
114         # Push to all remotes. Thanks to albel727 in #git on Freenode
115         # (2011-06-04 16:06 CEST) for the idea. Modified to push in parallel
116         # and to strip unnecessary output.
117         rp = "! git remote \
118               | xargs -d '\\n' -n1 -P0 git push 2>&1 \
119               | sed '/^$/d; \
120                      /^Please make sure you have the correct access rights$/d; \
121                      /^and the repository exists\\.$/d;'"
122         ## Patches.
123         fp  = format-patch
124         ## Maintenance.
125         # (Redirection of stderr is necessary to prevent missing output with
126         # my "color stderr" solution in Zsh.)
127         fs  = ! git fsck --strict --full 2>&1
128         fg  = ! git fs && git gc --aggressive 2>&1 # fsck and compress repo
129         ## Misc.
130         sl  = stash list
131         ss  = stash save
132         ssk = stash save --keep-index
133         ssu = stash save --include-untracked
134         sa  = stash apply --index
135         sp  = stash pop --index
136
137         ## Custom commands.
138         #
139         # tig-like log view. Similar to the following but with author/date
140         # information. --pretty=format is not used because it doesn't allow
141         # precise enough control over formats and colors.
142         #
143         # tig = log --pretty=oneline --graph --all --decorate --abbrev-commit
144         tig = ! PWD/bin/tig.pl
145
146         # Create backup of uncommitted and untracked changes.
147         ssb = "! git stash save --include-untracked \
148                      \"Backup on $(LANG=C date '+%a, %d %b %Y %H:%M:%S %z')\" \
149                      >/dev/null \
150               && git stash apply >/dev/null"
151
152         # Display list and content of untracked files. Untracked directories
153         # and symbolic links are only listed.
154         u = "! git ls-files --other --exclude-standard --directory -z \
155              | xargs -0 sh -c '\
156                    for x; do \
157                        printf \"\\033[1;33m-> %s\\033[0m:\" \"$x\"; \
158                        if test -d \"$x\"; then \
159                            echo \" directory\"; \
160                        elif test -h \"$x\"; then \
161                            echo \" symbolic link\"; \
162                        else \
163                            echo; \
164                            cat \"$x\"; \
165                        fi; \
166                        echo; \
167                    done' argv0 \
168              | less"
169
170 [diff]
171         # Detect copies and renames.
172         renames = copy
173
174         # Diff algorithm to use.
175         algorithm = histogram
176
177         # Highlight moved code in a different color.
178         colorMoved = zebra
179
180         # Replace "a/" and "b/" prefix in diffs with characters describing the
181         # context (e.g. "i/"ndex and "w/"ork tree).
182         mnemonicprefix = true
183
184         # Change the definition of a word as used by diff --color-words to be
185         # shorter (not only spaces) and thus simplify the generated diffs.
186         # Words ([a-zA-Z0-9_]+) are matched, or a single non-word character
187         # ([^a-zA-Z0-9_]), therefore changes to words are shown in complete
188         # (e.g. from "word" to "newword" as "[-word-]{+newword+}"), but
189         # changes to non-word characters are shown character wise (e.g. from
190         # "==" to "!=" as "[-=-]{+!+}="); [-..-] is removal, {+..+} is
191         # addition. See t/ for some tests and examples.
192         wordRegex = [a-zA-Z0-9_]+|[^a-zA-Z0-9_]
193
194 # Allow diffing of some binary files.
195 #
196 # "sh -c '..' ARGV0" is used when the programs require additional arguments
197 # which are passed after ARGV0 by git.
198 [diff "gzip"]
199         textconv = gzip -d -c
200 [diff "pdf"]
201         textconv = sh -c 'exec pdftotext "$@" -' ARGV0
202 [diff "sqlite"]
203         textconv = sh -c 'exec sqlite3 "$@" .dump' ARGV0
204
205 [log]
206         # Display branches/tag names in log (same as log's --decorate option).
207         decorate = short
208         # If a single file is given to `git log`, automatically use --follow.
209         follow = true
210
211 [merge]
212         tool = vimdiff
213
214         # Merge upstream branch if `git merge` is called without arguments.
215         defaultToUpstream = true
216
217 [rebase]
218         # Use single-letter command names in git rebase -i which are faster to
219         # change.
220         abbreviateCommands = true
221
222 [push]
223         # When running git push without a refspec push only the current
224         # branch, see man page git-config(1) for details. Default since Git
225         # 2.0.
226         default = simple
227
228 [format]
229         # When using git format-patch use threads and add all patches as
230         # replies to the first one.
231         thread = shallow
232
233 [transfer]
234         # Automatically fsck objects when receiving them (respected by git
235         # receive-pack and git fetch (>= 1.7.8, for fetch)).
236         fsckObjects = true
237
238 [advice]
239         # Disable annoying advice messages.
240         waitingForEditor = false
241
242
243 # NON-GIT SETTINGS
244
245 [annex]
246         # My SSH config already uses ControlMaster where appropriate.
247         sshcaching = false
248
249 # vim: ft=gitconfig