-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
44 lines (33 loc) · 901 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
42
43
44
[user]
email = [email protected]
name = Lemuel Roberto Bonifácio
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL+g2Pxbs/hLbmxll9DVc+Bbolz6S6LHWldsv0u79V0i
[core]
editor = nvim
[alias]
# Amend the currently staged files to the latest commit
amend = commit --amend
[help]
# Automatically correct and execute mistyped commands
autocorrect = 1
[pull]
# Rebase on pull
rebase = true
# Enforce SSH
[url "[email protected]:"]
insteadOf = https://github.com/
pushInsteadOf = https://github.com/
[url "[email protected]:"]
insteadOf = https://gitlab.com/
pushInsteadOf = https://gitlab.com/
[url "[email protected]:"]
insteadOf = https://bitbucket.org/
pushInsteadOf = https://bitbucket.org/
[init]
defaultBranch = main
[gpg]
format = ssh
[gpg "ssh"]
program = "/opt/1Password/op-ssh-sign"
[commit]
gpgsign = true