-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
65 lines (60 loc) · 1.22 KB
/
gitconfig
File metadata and controls
65 lines (60 loc) · 1.22 KB
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
[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 = nvim
[apply]
whitespace = nowarn
[diff]
tool = kitty
guitool = kitty.gui
[difftool]
prompt = false
trustExitCode = true
[difftool "kitty"]
cmd = kitten diff $LOCAL $REMOTE
[difftool "kitty.gui"]
cmd = kitten diff $LOCAL $REMOTE
[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