-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
87 lines (76 loc) · 2.08 KB
/
Copy pathgitconfig
File metadata and controls
87 lines (76 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[user]
name = Chris AtLee
email = chris.atlee@shopify.com
signingkey = 84CD7E19
[core]
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
dark = true
side-by-side = false
line-numbers = true
syntax-theme = Dracula
minus-style = syntax "#44101a"
minus-emph-style = syntax "#ff5555" bold
plus-style = syntax "#1a3a1a"
plus-emph-style = syntax "#50fa7b" bold
line-numbers-minus-style = "#ff5555"
line-numbers-plus-style = "#50fa7b"
hunk-header-style = syntax bold
hunk-header-decoration-style = "#6272a4" box
[color]
diff = auto
[diff]
renames = true
renameLimit = 5000
[alias]
co = checkout
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/chrisatlee/.config/dev/gitconfig
[pull]
ff = only
[rebase]
autoStash = true
[merge]
conflictstyle = zdiff3
[diff]
colorMoved = default
[init]
defaultBranch = main
[rerere]
enabled = false
[submodule]
recurse = true
[lfs]
setlockablereadonly = 0
[credential "https://github.com"]
helper =
helper = !gh auth git-credential
[maintenance]
repo = /Users/chrisatlee/world/git
[commit]
gpgsign = false
[credential "https://gist.github.com"]
helper =
helper = !gh auth git-credential
[shop-world "stale-pr-cutoff"]
main = 1788529860
[credential "https://*.quick.shopify.io"]
helper =
helper = /Users/chrisatlee/.config/quick/quick-git-credential.sh
[http "https://*.quick.shopify.io/"]
extraHeader = X-Requested-With: XMLHttpRequest
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true