-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
31 lines (30 loc) · 873 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
[user]
name = Zach Tirrell
email = zbtirrell@gmail.com
[diff]
noprefix = true
tool = diffmerge
#[color]
# ui = true
[alias]
lg = log --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
st = status
[difftool]
prompt = false
[credential]
helper = osxkeychain
[gist]
private = true
[core]
autocrlf = false
[push]
default = simple
[difftool "diffmerge"]
cmd = diffmerge \"$LOCAL\" \"$REMOTE\"
[instaweb]
httpd = webrick
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process