-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig.wsl
68 lines (52 loc) · 1.32 KB
/
gitconfig.wsl
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
66
67
[core]
sshCommand = ssh.exe
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/
[user]
email = [email protected]
name = Eric Barendt
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK6n7APsGxZU25H9IlfYSNWF9YbRIQK0bPPgzoTXhuf9
[gpg]
format = ssh
[gpg "ssh"]
program = "/mnt/c/Users/ebare/AppData/Local/1Password/app/8/op-ssh-sign-wsl"
[commit]
gpgsign = true
[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
[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
[delta]
navigate = true
side-by-side = true
[fetch]
prune = true