-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
32 lines (29 loc) · 824 Bytes
/
gitconfig
File metadata and controls
32 lines (29 loc) · 824 Bytes
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
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
# name = Ryan Musgrave
# email = ryan.musgrave@shopify.com
[user]
name = Ryan Musgrave
email = ryan.musgrave@shopify.com
[alias]
sync-master = !git fetch origin master:master && git rebase master
sync-main = !git fetch origin main:main && git rebase main
recent-branches=for-each-ref --sort=-committerdate --count=10 --format='%(refname:short)' refs/heads/
[push]
default = current
[diff]
algorithm = patience
[protocol]
version = 2
[core]
commitGraph = true
[gc]
writeCommitGraph = true
[url "https://github.com/Shopify/"]
insteadOf = git@github.com:Shopify/
insteadOf = git@github.com:shopify/
insteadOf = ssh://git@github.com/Shopify/
insteadOf = ssh://git@github.com/shopify/
[pull]
ff = only