-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
54 lines (50 loc) · 1.02 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
[alias]
co = checkout
uncommit = reset --soft HEAD^
grab = read-tree -u -m
unstage = reset HEAD --
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
pushf = push --force-with-lease
pushu = push -u
[color]
diff = auto
status = auto
branch = auto
[color "diff"]
meta = yellow
[core]
excludesfile = ~/.gitignore
pager = diff-so-fancy | less --tabs=4 -RFX
editor = zed -w
[apply]
whitespace = nowarn
[help]
autocorrect = 1
[branch]
autosetupmerge = true
autosetuprebase = always
[push]
default = current
[rerere]
enabled = 1
[github]
user = d3chapma
[merge]
ff = only
conflictStyle = diff3
[fetch]
prune = true
[include]
path = ~/.gitconfig.local
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[user]
name = David Chapman
email = talk2dc@gmail.com
[url "ssh://git@github.com/"]
insteadOf = /~https://github.com/
[commit]
gpgsign = true