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