-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
89 lines (72 loc) · 1.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[user]
email = [email protected]
name = Dov Murik
[core]
excludesfile = ~/.gitignore
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager="less -+$LESS -FRX"
[color]
ui = true
#local = yellow
#remote = green
[color "diff"]
meta = 11
commit = yellow bold
frag = magenta bold
old = red bold
new = green bold
# Highlight whitespace in diffs
whitespace = red reverse
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
st = status
ci = commit
br = branch -vv
co = checkout
df = diff
dft = difftool
difft = difftool
root = rev-parse --show-toplevel
ff = merge --ff-only
fap = fetch --all --prune
unmerged = branch -a --no-merged
lg = log --graph --pretty=format:'%C(auto)%h%d %s (%ar) <%an>'
publish = !/usr/bin/git-publish
pp = push -u origin HEAD
[merge]
conflictstyle = diff3
[pull]
ff = only
[push]
default = simple
[diff]
algorithm = patience
renames = copies
colorMoved = default
tool = difftastic
[difftool]
prompt = false
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"
[pager]
difftool = true
[rerere]
enabled = true
[transfer]
fsckobjects = true
[sendemail]
aliasesFile = ~/.mutt/aliases
aliasFileType = mutt
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f