1 # Global Git configuration file.
3 # Copyright (C) 2011-2015 Simon Ruderich
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.
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.
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/>.
21 email = simon@ruderich.org
31 # Function in hunk header.
40 # GNU grep-like colors.
47 # Global gitattributes file. Thanks to canton7 in #git on Freenode
48 # (2011-11-09 13:23 CET).
49 attributesfile = PWD/gitattributes
51 # Use pager for the following commands.
57 # Don't require <Return> in interactive commands which require only a
58 # single key, for example `git add --patch`. Requires Perl module
63 ## Shortcuts for often used commands.
67 ca = commit --verbose --amend
68 cad = commit --verbose --amend --date=
70 dw = diff --color-words
73 dcw = diff --cached --color-words
74 dcs = diff --cached --stat
80 lpw = log --patch --color-words
87 # Only clean ignored files.
95 mo = merge origin/master
97 rei = rebase --interactive
98 rec = rebase --continue
103 # Parallel git remote update. Also strips unnecessary output.
105 | xargs -d '\\n' -n1 -P0 git remote update 2>&1 \
107 /^Please make sure you have the correct access rights$/d; \
108 /^and the repository exists\\.$/d;'"
109 # Push to all remotes. Thanks to albel727 in #git on Freenode
110 # (2011-06-04 16:06 CEST) for the idea. Modified to push in parallel
111 # and to strip unnecessary output.
113 | xargs -d '\\n' -n1 -P0 git push 2>&1 \
115 /^Please make sure you have the correct access rights$/d; \
116 /^and the repository exists\\.$/d;'"
120 # (Redirection of stderr is necessary to prevent missing output with
121 # my "color stderr" solution in Zsh.)
122 fs = ! git fsck --strict --full 2>&1
123 fg = ! git fs && git gc --aggressive 2>&1 # fsck and compress repo
127 ssk = stash save --keep-index
128 ssu = stash save --include-untracked
129 sa = stash apply --index
130 sp = stash pop --index
134 # tig-like log view. Similar to the following but with author/date
135 # information. --pretty=format is not used because it doesn't allow
136 # precise enough control over formats and colors.
138 # tig = log --pretty=oneline --graph --all --decorate --abbrev-commit
139 tig = ! PWD/bin/tig.pl
141 # Create backup of uncommitted and untracked changes.
142 ssb = "! git stash save --include-untracked \
143 \"Backup on $(LANG=C date '+%a, %d %b %Y %H:%M:%S %z')\" \
145 && git stash apply >/dev/null"
147 # Display list and content of untracked files. Untracked directories
148 # and symbolic links are only listed.
149 u = "! git ls-files --other --exclude-standard --directory -z \
152 printf \"\\033[1;33m-> %s\\033[0m:\" \"$x\"; \
153 if test -d \"$x\"; then \
154 echo \" directory\"; \
155 elif test -h \"$x\"; then \
156 echo \" symbolic link\"; \
166 # Detect copies and renames.
169 # Diff algorithm to use.
170 algorithm = histogram
172 # Change the definition of a word as used by diff --color-words to be
173 # shorter (not only spaces) and thus simplify the generated diffs.
174 # Words ([a-zA-Z0-9_]+) are matched, or a single non-word character
175 # ([^a-zA-Z0-9_]), therefore changes to words are shown in complete
176 # (e.g. from "word" to "newword" as "[-word-]{+newword+}"), but
177 # changes to non-word characters are shown character wise (e.g. from
178 # "==" to "!=" as "[-=-]{+!+}="); [-..-] is removal, {+..+} is
179 # addition. See t/ for some tests and examples.
180 wordRegex = [a-zA-Z0-9_]+|[^a-zA-Z0-9_]
182 # Allow diffing of some binary files.
184 # "sh -c '..' -" is used when the programs require additional arguments. The
185 # last "-" is argv[0] which is passed to sh, the real arguments are passed
188 textconv = gzip -d -c
190 textconv = sh -c 'exec pdftotext "$@" -' -
192 textconv = sh -c 'exec sqlite3 "$@" .dump' -
195 # Display branches/tag names in log (same as log's --decorate option).
201 # Merge upstream branch if `git merge` is called without arguments.
202 defaultToUpstream = yes
205 # When running git push without a refspec push only the current
206 # branch, see man page git-config(1) for details. Default since Git
211 # When using git format-patch use threads and add all patches as
212 # replies to the first one.
216 # Automatically fsck objects when receiving them (respected by git
217 # receive-pack and git fetch (>= 1.7.8, for fetch)).