-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgit.conf
26 lines (21 loc) · 806 Bytes
/
git.conf
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
[alias]
br = "branch"
ci = "commit"
co = "checkout"
lo = "log --pretty=format:\"%C(yellow)%h%Creset %s%n%C(magenta)%C(bold)%an%Creset %ar\" --graph"
st = "status"
v = "log --graph --oneline --decorate"
van = "log --pretty=format:'%C(yellow)%h%Creset %ad %C(magenta)%C(bold)%cn%Creset %s %C(auto)%d%C(reset)' --graph --date=format:%Y/%m/%d_%H%M"
vn = "log --pretty=format:'%C(yellow)%h%Creset %ad %s %C(auto)%d%C(reset)' --graph --date=format:%Y/%m/%d_%H%M"
vo = "log --graph --decorate"
[core]
pager = "delta --dark"
[diff]
tool = "vimdiff"
[interactive]
diffFilter = "delta --dark --color-only"
[merge]
tool = "vimdiff"
[user]
email = "[email protected]"
name = "Attila Gulyas"