-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgitconfig
45 lines (45 loc) · 1.06 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
[user]
name = Thorsten Wißmann
email = [email protected]
[color]
ui = auto
[alias]
lastpatch = log -p HEAD^1..HEAD
tree = log --graph --oneline --all --decorate=short
t = log --graph --oneline --all --decorate=short
st = status
wdiff = diff --color-words
bdiff = diff --color-words=.
wshow = show --color-words
bshow = show --color-words=.
hug = push
ca = commit -av
c = commit -v
cv = commit -v
co = commit -v
ap = add -p
deltalog = log --oneline origin/master..HEAD
pff = pull --ff-only
ff = merge --ff-only
mff = merge --ff-only
ldiff = latexdiff --latexmk --ignore-makefile --subtree
# Why didn't this beautiful acronym come to my mind?
wlog = log -p --word-diff=color
[merge]
tool = vimdiff
[push]
default = simple
[difftool.latex]
cmd = git-latexdiff \"$LOCAL\" \"$REMOTE\"
[difftool]
prompt = false
[diff]
noprefix = true # Warning: this breaks format-patch!
# vim: noet
[init]
defaultBranch = master
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true