-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdot_gitconfig
30 lines (28 loc) · 918 Bytes
/
dot_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
[user]
name = Riccardo M. Cefala
email = [email protected]
signkey = 35693B03541B7527C790EE735C134572339E936F
[github]
user = riccardomc
[core]
editor = vim
excludesfile = ~/.gitignore
[color]
ui = true
[alias]
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
lnc = log --pretty=format:"%h\\ %s\\ [%cn]"
lola = log --graph --pretty=format:'%C(yellow)%h%Creset%C(red)%d%Creset %s %Cgreen%an %Cblue(%cr)%Creset' --abbrev-commit --date=relative --all
[push]
default = simple
[merge]
tool = kdiff3
[mergetool "kdiff3NoAuto"]
cmd = kdiff3 --L1 \"$MERGED (Base)\" --L2 \"$MERGED (Local)\" --L3 \"$MERGED (Remote)\" -o \"$MERGED\" \"$BASE\" \"$LOCAL\" \"$REMOTE\"
[log]
decorate = true
[init]
defaultBranch = main
[pull]
rebase = true