-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
55 lines (55 loc) · 1.27 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]
email = lborgav@gmail.com
name = Leonardo Borges Avelino
signingkey = 72DEB6105C29DC2C
[core]
pager = diff-so-fancy | less --tabs=4 -RFX
ui = true
excludesfile = /Users/lborgav/.gitignore_global
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
meta = yellow
frag = magenta bold
commit = yellow bold
old = red bold
new = green bold
whitespace = red reverse
[color "status"]
header = black normal bold
added = green normal bold
updated = green normal bold
changed = yellow normal bold
untracked = cyan normal bold
branch = magenta normal bold
nobranch = normal normal bold
unmerged = red normal bold
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[commit]
gpgsign = true
template = /Users/lborgav/.stCommitMsg
[alias]
unstage = reset HEAD --
undo = checkout --
rollback = reset --soft HEAD~1
[gpg]
program = gpg
[url "git@github.com:"]
insteadOf = https://github.com/
[url "git@github.com:olaisaac"]
insteadOf = https://github.com/olaisaac
[init]
defaultBranch = main
[pull]
rebase = false
[http]
sslVerify = false
[url "git@github.com:OlaIsaac"]
insteadOf = https://github.com/OlaIsaac