forked from killtheliterate/dotgit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
52 lines (52 loc) · 1.22 KB
/
gitconfig
File metadata and controls
52 lines (52 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
[user]
name = Garrett Dawson
email = killtheliterate@gmail.com
[core]
editor = $EDITOR
excludesfile = "${HOME}/.config/git/gitignore_global"
pager = less -FRSX
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
[credential]
helper = store
[color]
interactive = auto
ui = true
pager = true
[color "status"]
added = green
changed = yellow
untracked = red
[mergetool]
keepBackup = false
keepTemporaries = false
prompt = false
[diff]
tool = vimdiff
compactionHeuristic = true
[push]
default = current
[help]
autocorrect = 1
[alias]
l = log --graph --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset'
ll = log --stat --abbrev-commit
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[rerere]
enabled = 1
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[merge]
keepBackup = false
tool = p4merge
[mergetool "p4merge"]
cmd = /Applications/p4merge.app/Contents/Resources/launchp4merge $PWD/$BASE $PWD/$REMOTE $PWD/$LOCAL $PWD/$MERGED
keepTemporaries = false
trustExitCode = false
keepBackup = false