-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
executable file
·35 lines (30 loc) · 1.23 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
[user]
name = Valentin Schneider
email = [email protected]
[core]
editor = emacs
[push]
default = simple
[alias]
slog = log --oneline --decorate
sloga = log --format='%C(yellow)%h%C(auto) %s %C(green)(%aN) %C(auto)'
woof = log --all --decorate --oneline --graph
klog = log --format='%C(auto)%h %C(red)(\"%C(auto)%s%C(red)\")%C(auto)' --abbrev=12
kshow = log --format='%C(auto)%h %C(red)(\"%C(auto)%s%C(red)\")%C(auto)' --abbrev=12 -n1
# https://stackoverflow.com/a/5188364/5096023
btime = for-each-ref --sort=committerdate --format='%(color:yellow)%(objectname:short)%(color:reset) %(refname:short) (%(color:green)%(committerdate:relative)%(color:reset))'
send-email-test = send-email --to [email protected] --no-chain-reply-to --no-signed-off-by-cc --suppress-cc=all --suppress-from
send-email-lkml = send-email --to [email protected] --confirm always --no-chain-reply-to --suppress-from
send-email-list = send-email --confirm always --no-chain-reply-to --suppress-from
[sendemail]
smtpserver = smtp.gmail.com
smtpuser = [email protected]
smtpencryption = tls
smtpserverport = 587
from = Valentin Schneider <[email protected]>
confirm = always
multiedit = false
[credential]
helper = store
[rerere]
enabled = false