forked from ronakg/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
65 lines (60 loc) · 1.28 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
[user]
name = Aaron Cleaver
email = [email protected]
[github]
user = AaronCleaver
[diff]
tool = vimdiff
[merge]
tool = vimdiff
[difftool]
prompt = false
[color]
branch = auto
diff = auto
status = auto
grep = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = green bold
changed = yellow
untracked = cyan
[log]
date = short
[alias]
s = status -s
graph = log --pretty=format:\"%C(yellow)%h %ar %C(auto)%d %Creset %s , %Cblue%cn\" --graph --all
[show]
tool = vimdiff
[mergetool]
prompt = true
[mergetool "vimdiff"]
cmd = nvim -d $REMOTE $LOCAL -c 'wincmd L'
path = nvim
[push]
default = simple
[credential]
helper = cache
[pull]
rebase = true
[rebase]
autoStash = true
[format]
pretty = format:%C(yellow)%h %Cblue%>(12)%ad %Cgreen%<(7)%aN%Cred%d %Creset%s
[status]
showUntrackedFiles = no
[core]
autocrlf = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true