-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
48 lines (48 loc) · 1.07 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
[user]
email = [email protected]
name = Eric Barendt
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cD) %C(bold blue)<%an>%Creset' --abbrev-commit
st = status
co = checkout
sfclone = !git clone [email protected]:stitchfix/$1
[core]
excludesFile = ~/.gitignore_global
autocrlf = input
pager = delta #/opt/homebrew/Cellar/git/2.41.0_2/share/git-core/contrib/diff-highlight/diff-highlight | less
hooksPath = .githooks/
[push]
default = simple
[merge]
tool = vimdiff
conflictstyle = diff3
[interactive]
diffFilter = delta --color-only
[color]
ui = always
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
commit = green
meta = yellow
frag = cyan
old = red
new = green
whitespace = red reverse
colorMoved = default
[init]
defaultBranch = main
[url "[email protected]:stitchfix"]
insteadOf = https://github.com/stitchfix
[commit]
gpgsign = true
[gpg]
format = ssh
[delta]
navigate = true
side-by-side = true
[fetch]
prune = true