-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
58 lines (44 loc) · 853 Bytes
/
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
# vim: set filetype=gitconfig :
[init]
defaultBranch = main
[push]
default = current
[core]
autocrlf = input
excludesfile = ~/.gitignore
[user]
name = Stephen Dolan
[alias]
ci = commit
co = checkout
st = status
stat = status
diff = difftool
undo-commit = reset --soft HEAD^
squash = rebase -i master
sq = squash
[color]
diff = auto
ui = auto
[branch]
autosetuprebase = always
[commit]
cleanup = scissors
[rebase]
autosquash = true
[fetch]
prune = true
[mergetool "fugitive"]
cmd = nvim -f -c \"Gdiff\" \"$MERGED\"
[merge]
tool = fugitive
[diff]
colorMoved = zebra
[includeIf "gitdir:@neadwerx/**/"]
path = ~/.gitconfig-neadwerx
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process