-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
50 lines (39 loc) · 1.11 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
[core]
editor = vim
[gpg]
format = ssh
[gpg "ssh"]
allowedSignersFile = "~/.config/git/trusted_public_keys"
[user]
name = Dionysis Grigoropoulos
email = [email protected]
signingkey = "key::[email protected] AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIPb9z1U7Sti2lls0mlcmyPwmwD91amKwVlLZHYclSoULAAAABHNzaDo="
[merge]
ff = false
commit = false
[color]
ui = true
[alias]
co = checkout
b = branch
ba = branch -a
bl = blame
fa = fetch --all
nv = commit --no-verify
ls = log --show-signature
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset by %C(yellow)%ae%Creset' --abbrev-commit --date=relative
lgg = log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset by %C(yellow)%ae%Creset' --abbrev-commit --date=relative
wd = diff --word-diff
[sendemail]
smtpencryption = tls
smtpserver = mail.erethon.com
smtpuser = XXX
smtpserverport = 587
[rerere]
enabled = true
[push]
default = matching
[init]
defaultBranch = main
[branch]
sort = -committerdate