-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
41 lines (33 loc) · 856 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
[user]
name = Chris AtLee
email = chris.atlee@shopify.com
signingKey = 84CD7E19
[color]
diff = auto
[diff]
renames = true
[alias]
di = diff -U8 --patch-with-stat
st = status -uno
fpush = push --force-with-lease
pullup = "!cd -- \"${GIT_PREFIX:-.}\" && git pull --rebase origin $(git symbolic-ref refs/remotes/origin/HEAD | xargs basename) && $SHELL -i -c 'dev up'"
[push]
default = current
[include]
path = ~/.gitsecrets
path = /Users/catlee/.config/dev/gitconfig
path = /Users/chrisatlee/.config/dev/gitconfig
[pull]
ff = only
[rebase]
autoStash = true
[merge]
conflictstyle = zdiff3
[diff]
colorMoved = default
[init]
defaultBranch = main
[rerere]
enabled = true
[submodule]
recurse = true