-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
55 lines (55 loc) · 1.4 KB
/
.gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[user]
name = Caspar Krieger
email = [email protected]
[color]
branch = auto
diff = auto
status = auto
[pager]
diff = delta
log = delta
reflog = delta
show = delta
[interactive]
diffFilter = delta --color-only
[delta]
# features = side-by-side line-numbers decorations
features = line-numbers
syntax-theme = Solarized (dark)
commit-decoration-style = bold yellow box ul
file-decoration-style = yellow ol
file-style = bold yellow ul
hunk-header-style = file line-number syntax
hunk-header-decoration-style = none
whitespace-error-style = 22 reverse
[alias]
a = add -p
g = log --graph --oneline --format=format:'%C(bold blue)%h%C(reset)%C(auto)%d%C(reset) %C(white)%s%C(reset) (%an, %ar)'
co = checkout
cv = commit -v
cva = commit -v --amend
r = reset
s = status
pu = push -u origin HEAD
puf = push -u origin HEAD --force-with-lease
msg = log --no-merges --reverse master..HEAD --format=%B
[push]
default = upstream
[core]
excludesfile = /home/ckrieger/.gitignore_global
[pull]
rebase = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[blame]
markIgnoredLines = true
markUnblamableLines = true
[init]
defaultBranch = master
[merge]
tool = vscode
[mergetool "vscode"]
cmd = code --wait $MERGED