-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgitconfig
74 lines (74 loc) · 1.47 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
[user]
name = David Celis
email = [email protected]
signingkey = 2663060C
[help]
autocorrect = 20
[alias]
amend = commit -a --amend
br = branch
ci = commit -s -v
co = checkout
di = diff
fa = fetch --all
ff = merge --ff-only
h = head
ignore = update-index --assume-unchanged
news = log -p HEAD@{1}..HEAD@{0}
noff = merge --no-ff
pullff = pull --ff-only
reuse = commit -a --amend -C HEAD
st = status -s
touch = "!f() { touch $1 && git add $1; }; f"
[color]
ui = auto
[core]
excludesfile = ~/.gitignore
fsmonitor = true
precomposeunicode = false
[credential]
helper = osxkeychain
[diff]
renames = copies
[merge]
conflictstyle = diff3
tool = vimdiff
[pager]
log = diff-highlight | less
show = diff-highlight | less
diff = diff-highlight | less
[push]
default = current
[rebase]
autosquash = true
[rerere]
enabled = true
autoupdate = true
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[ghi]
token = !security find-internet-password -a davidcelis -s github.com -l 'ghi token' -w
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[github]
user = davidcelis
[grep]
extendedRegexp = true
fullName = true
[commit]
gpgsign = true
[interactive]
diffFilter = diff-highlight
[url "[email protected]:"]
insteadOf = https://github.com/
[init]
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true