forked from rmm5t/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 15
/
gitconfig
48 lines (48 loc) · 941 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
[user]
email = jim@thegarvin.com
name = Jim Garvin
[alias]
co = checkout
st = status
br = branch
w = whatchanged
skip = update-index --skip-worktree
unskip = update-index --no-skip-worktree
skipped = !git ls-files -v | grep \"^S\"
[apply]
whitespace = nowarn
[color]
ui = auto
pager = true
interactive = 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
changed = yellow
untracked = cyan
[merge]
summary = true
[push]
default = tracking
[core]
excludesfile = /Users/jgarvin/.gitignore_global
editor = nvim --noplugins
[rerere]
enabled = 1
[github]
user = coderifous
[commit]
verbose = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true