]> Sergey Matveev's repositories - dotfiles.git/blob - git/.gitconfig
Initial
[dotfiles.git] / git / .gitconfig
1 [alias]
2         wt = worktree
3         unchanged = update-index --assume-unchanged
4 [user]
5         name = Sergey Matveev
6         email = stargrave@stargrave.org
7         signingkey = "E49857EF"
8 [color]
9         diff = auto
10         status = auto
11         branch = auto
12         interactive = auto
13 [core]
14         excludesfile = /home/stargrave/.git-ignore
15         quotepath = false
16         filemode = true
17         logallrefupdates = true
18         whitespace = blank-at-eol, space-before-tab, tab-in-indent, blank-at-eof
19 [log]
20         date = iso8601
21 [push]
22         default = current
23 [rebase]
24         autosquash = true
25 [rerere]
26         enabled = true
27 [notes]
28         displayRef = *
29 [diff]
30         algorithm = patience
31 [grep]
32         lineNumber = true