-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
55 lines (55 loc) · 1.17 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
49
50
51
52
53
54
55
[user]
name = Andre Medeiros
email = [email protected]
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAVg9SA4aL/UIAshxNKCvn5DaOGSfTHrsjqwRe9VnZw/
[alias]
up = pull --rebase --autostash
co = checkout
st = status
pr = pull-request
rb = rewrite-branch
vomit = !git commit -m "$(curl -s https://whatthecommit.com/index.txt)"
[color]
ui = true
grep = auto
[push]
default = current
[branch]
autosetuprebase = always
[github]
user = andremedeiros
[web]
browser = open
[fetch]
prune = true
[rebase]
autosquash = true
autoStash = true
[instaweb]
httpd = webrick
[diff]
tool = opendiff
algorithm = patience
compactionheuristic = true
[commit]
verbose = true
gpgsign = true
[remote "origin"]
fetch = +refs/pull/*/merge:refs/remotes/origin/pr/*
[pull]
rebase = true
[gpg]
format = ssh
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[include]
path = /Users/andremedeiros/.netlify/helper/git-config
[core]
attributesfile = /Users/andremedeiros/.gitattributes
[init]
defaultBranch = main
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"