]> Sergey Matveev's repositories - dotfiles.git/blob - git/.gitconfig
diff-highlight highlighter is pretty usefuly
[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 = patience
35         tool = vimdiff
36 [grep]
37         lineNumber = true
38 [merge]
39         tool = vimdiff
40 [pull]
41         ff = only
42 [help]
43         autocorrect = never
44 [init]
45         defaultBranch = master