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