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
76 gi = grep --ignore-case
81 lpw = log --patch --color-words
96 mo = merge origin/master
98 rei = rebase --interactive
99 rec = rebase --continue
104 # Parallel git remote update. Also strips unnecessary output.
106 | xargs -d '\\n' -n1 -P0 git remote update 2>&1 \
108 /^Please make sure you have the correct access rights$/d; \
109 /^and the repository exists\\.$/d;'"
110 # Push to all remotes. Thanks to albel727 in #git on Freenode
111 # (2011-06-04 16:06 CEST) for the idea. Modified to push in parallel
112 # and to strip unnecessary output.
114 | xargs -d '\\n' -n1 -P0 git push 2>&1 \
116 /^Please make sure you have the correct access rights$/d; \
117 /^and the repository exists\\.$/d;'"
121 # (Redirection of stderr is necessary to prevent missing output with
122 # my "color stderr" solution in Zsh.)
123 fs = ! git fsck --strict --full 2>&1
124 fg = ! git fs && git gc --aggressive 2>&1 # fsck and compress repo
128 ssk = stash save --keep-index
129 ssu = stash save --include-untracked
130 sa = stash apply --index
131 sp = stash pop --index
135 # tig-like log view. Similar to the following but with author/date
136 # information. --pretty=format is not used because it doesn't allow
137 # precise enough control over formats and colors.
139 # tig = log --pretty=oneline --graph --all --decorate --abbrev-commit
140 tig = ! PWD/bin/tig.pl
142 # Create backup of uncommitted and untracked changes.
143 ssb = "! git stash save --include-untracked \
144 \"Backup on $(LANG=C date '+%a, %d %b %Y %H:%M:%S %z')\" \
146 && git stash apply >/dev/null"
148 # Display list and content of untracked files. Untracked directories
149 # and symbolic links are only listed.
150 u = "! git ls-files --other --exclude-standard --directory -z \
153 printf \"\\033[1;33m-> %s\\033[0m:\" \"$x\"; \
154 if test -d \"$x\"; then \
155 echo \" directory\"; \
156 elif test -h \"$x\"; then \
157 echo \" symbolic link\"; \
167 # Detect copies and renames.
170 # Diff algorithm to use.
171 algorithm = histogram
173 # Change the definition of a word as used by diff --color-words to be
174 # shorter (not only spaces) and thus simplify the generated diffs.
175 # Words ([a-zA-Z0-9_]+) are matched, or a single non-word character
176 # ([^a-zA-Z0-9_]), therefore changes to words are shown in complete
177 # (e.g. from "word" to "newword" as "[-word-]{+newword+}"), but
178 # changes to non-word characters are shown character wise (e.g. from
179 # "==" to "!=" as "[-=-]{+!+}="); [-..-] is removal, {+..+} is
180 # addition. See t/ for some tests and examples.
181 wordRegex = [a-zA-Z0-9_]+|[^a-zA-Z0-9_]
183 # Allow diffing of some binary files.
185 # "sh -c '..' -" is used when the programs require additional arguments. The
186 # last "-" is argv[0] which is passed to sh, the real arguments are passed
189 textconv = gzip -d -c
191 textconv = sh -c 'exec pdftotext "$@" -' -
193 textconv = sh -c 'exec sqlite3 "$@" .dump' -
196 # Display branches/tag names in log (same as log's --decorate option).
202 # Merge upstream branch if `git merge` is called without arguments.
203 defaultToUpstream = yes
206 # When running git push without a refspec push only the current
207 # branch, see man page git-config(1) for details. Default since Git
212 # When using git format-patch use threads and add all patches as
213 # replies to the first one.
217 # Automatically fsck objects when receiving them (respected by git
218 # receive-pack and git fetch (>= 1.7.8, for fetch)).