]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - gitconfig.in
tigrc: update for tig >= 2.0
[config/dotfiles.git] / gitconfig.in
1 # Global Git configuration file.
2
3 # Copyright (C) 2011-2014  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
65         dw  = diff --color-words
66         dc  = diff --cached
67         dcw = diff --cached --color-words
68         ds  = diff --stat
69         g   = grep
70         s   = status
71         l   = log
72         ls  = log --stat
73         lp  = log --patch
74         lpw = log --patch --color-words
75         a   = add
76         ap  = add --patch
77         au  = add --update
78         ## Branches.
79         co  = checkout
80         b   = branch -a -v
81         m   = merge
82         mo  = merge origin/master
83         ## Remote.
84         f   = fetch
85         t   = tag
86         p   = push
87         # Parallel git remote update. Also strips unnecessary output.
88         ru = "! git remote \
89               | xargs -d '\\n' -n1 -P0 git remote update 2>&1 \
90               | sed '/^$/d; \
91                      /^Please make sure you have the correct access rights$/d; \
92                      /^and the repository exists\\.$/d;'"
93         # Push to all remotes. Thanks to albel727 in #git on Freenode
94         # (2011-06-04 16:06 CEST) for the idea. Modified to push in parallel
95         # and to strip unnecessary output.
96         rp = "! git remote \
97               | xargs -d '\\n' -n1 -P0 git push 2>&1 \
98               | sed '/^$/d; \
99                      /^Please make sure you have the correct access rights$/d; \
100                      /^and the repository exists\\.$/d;'"
101         ## Patches.
102         fp  = format-patch
103         ## Maintenance.
104         # (Redirection of stderr is necessary to prevent missing output with
105         # my "color stderr" solution in Zsh.)
106         fs  = ! git fsck --strict --full 2>&1
107         fg  = ! git fs && git gc --aggressive 2>&1 # fsck and compress repo
108         ## Misc.
109         sl  = stash list
110         ss  = stash save
111         ssk = stash save --keep-index
112         ssu = stash save --include-untracked
113         sa  = stash apply --index
114         sp  = stash pop --index
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 = ! PWD/bin/tig.pl
124
125         # Create backup of uncommitted and untracked changes.
126         ssb = "! git stash save --include-untracked \
127                      \"Backup on $(LANG=C date '+%a, %d %b %Y %H:%M:%S %z')\" \
128                      >/dev/null \
129               && git stash apply >/dev/null"
130
131         # Display list and content of untracked files. Untracked directories
132         # and symbolic links are only listed.
133         u = "! git ls-files --other --exclude-standard --directory -z \
134              | xargs -0 sh -c '\
135                    for x; do \
136                        printf \"\\033[1;33m-> %s\\033[0m:\" \"$x\"; \
137                        if test -d \"$x\"; then \
138                            echo \" directory\"; \
139                        elif test -h \"$x\"; then \
140                            echo \" symbolic link\"; \
141                        else \
142                            echo; \
143                            cat \"$x\"; \
144                        fi; \
145                        echo; \
146                    done' argv0 \
147              | less"
148
149 [diff]
150         # Detect copies and renames.
151         renames = copy
152
153         # Diff algorithm to use.
154         algorithm = histogram
155
156         # Change the definition of a word as used by diff --color-words to be
157         # shorter (not only spaces) and thus simplify the generated diffs.
158         # Words ([a-zA-Z0-9_]+) are matched, or a single non-word character
159         # ([^a-zA-Z0-9_]), therefore changes to words are shown in complete
160         # (e.g. from "word" to "newword" as "[-word-]{+newword+}"), but
161         # changes to non-word characters are shown character wise (e.g. from
162         # "==" to "!=" as "[-=-]{+!+}="); [-..-] is removal, {+..+} is
163         # addition. See t/ for some tests and examples.
164         wordRegex = [a-zA-Z0-9_]+|[^a-zA-Z0-9_]
165
166 # Allow diffing of some binary files.
167 #
168 # "sh -c '..' -" is used when the programs require additional arguments. The
169 # last "-" is argv[0] which is passed to sh, the real arguments are passed
170 # after "-" by git.
171 [diff "gzip"]
172         textconv = gzip -d -c
173 [diff "pdf"]
174         textconv = sh -c 'exec pdftotext "$@" -' -
175 [diff "sqlite"]
176         textconv = sh -c 'exec sqlite3 "$@" .dump' -
177
178 [log]
179         # Display branches/tag names in log (same as log's --decorate option).
180         decorate = short
181
182 [merge]
183         tool = vimdiff
184
185         # Merge upstream branch if `git merge` is called without arguments.
186         defaultToUpstream = yes
187
188 [push]
189         # When running git push without a refspec push only the current
190         # branch, see man page git-config(1) for details.
191         default = simple
192
193 [format]
194         # When using git format-patch use threads and add all patches as
195         # replies to the first one.
196         thread = shallow
197
198 [transfer]
199         # Automatically fsck objects when receiving them (respected by git
200         # receive-pack and git fetch (>= 1.7.8, for fetch)).
201         fsckobjects = yes
202
203 # vim: ft=gitconfig