-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdot_gitconfig
More file actions
72 lines (72 loc) · 1.48 KB
/
Copy pathdot_gitconfig
File metadata and controls
72 lines (72 loc) · 1.48 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
66
67
68
69
70
71
72
[user]
email = kyle.coberly@gmail.com
name = Kyle Coberly
[github]
user = kylecoberly
[color]
ui = true
[alias]
co = checkout
cob = checkout -b
c = commit
cm = commit -m
wip = commit -am 'WIP'
cam = commit -am
st = status
br = branch
s = status -s
sq = rebase -i HEAD~2
lg = log --pretty=format:'%C(yellow)%h -%C(auto)%d %C(bold cyan)%s %C(bold white)(%cr)%Creset %C(dim white)<%an>'
graph = log --graph --pretty=format:'%C(yellow)%h -%C(auto)%d %C(bold cyan)%s %C(bold white)(%cr)%Creset %C(dim white)<%an>'
[push]
default = upstream
autoSetupRemote = true
followTags = true
[pull]
rebase = true
[branch]
autosetuprebase = always
[rebase]
autosquash = true
[rerere]
enabled = true
[diff]
colorMoved = zebra
[core]
abbrev = 4
autocrlf = input
editor = nvim
filemode = false
excludesfile = ~/.gitignore
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
line-numbers = true
[log]
decorate = short
abbrevCommit = true
showRoot = true
[credential]
helper = cache
[merge]
tool = nvimdiff
conflictstyle = diff3
[mergetool "vim_mergetool"]
cmd = nvim -f -c "MergetoolStart" "$MERGED" "$BASE" "$LOCAL" "$REMOTE"
trustExitCode = true
[mergetool]
keepBackup = false
[help]
autocorrect = 1
[status]
short = true
[init]
defaultBranch = main
[credential "https://github.com"]
helper =
helper = !gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !gh auth git-credential