]> Sergey Matveev's repositories - dotfiles.git/blob - git/.gitconfig
No on-data caches
[dotfiles.git] / git / .gitconfig
1 [advice]
2         pushUpdateRejected = false
3         detachedHead = false
4 [alias]
5         wt = worktree
6         unchanged = update-index --assume-unchanged
7 [user]
8         name = Sergey Matveev
9         email = stargrave@stargrave.org
10         signingkey = "E49857EF"
11 [color]
12         diff = auto
13         status = auto
14         branch = auto
15         interactive = auto
16 [core]
17         excludesfile = /home/stargrave/.git-ignore
18         quotepath = false
19         filemode = true
20         logallrefupdates = true
21         whitespace = blank-at-eol, space-before-tab, tab-in-indent, blank-at-eof
22         pager=diff-highlight | $PAGER
23 [log]
24         date = iso8601
25 [push]
26         default = current
27 [rebase]
28         autosquash = true
29 [rerere]
30         enabled = true
31 [notes]
32         displayRef = *
33 [diff]
34         algorithm = histogram
35         colorMoved = default
36         colorMovedWS = allow-indentation-change
37         tool = vimdiff
38 [grep]
39         lineNumber = true
40 [merge]
41         tool = vimdiff
42 [pull]
43         ff = only
44 [help]
45         autocorrect = never
46 [init]
47         defaultBranch = master
48 [format]
49         useAutoBase = true