-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
38 lines (38 loc) · 871 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
[user]
name = olbrew
email = [email protected]
signingKey = /Users/o/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/PublicKeys/937816c932363fd406c896cd1d97db33.pub
[credential]
helper = osxkeychain
[core]
editor = hx
excludesfile = ~/.config/git/gitignore_global
pager = bat
[stash]
showPatch = true
[log]
decorate = full
[init]
defaultBranch = main
[gpg]
format = ssh
[commit]
gpgSign = true
[tag]
forceSignAnnotated = true
[push]
default = simple
followTags = true
[alias]
s = status
a = add
c = commit
cm = commit -m
d = diff
pl = pull
ps = push
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
co = checkout
prune = fetch --prune
[pull]
rebase = false