-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
35 lines (35 loc) · 838 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
[user]
name = Miro Bezjak
email = [email protected]
[core]
pager = delta --dark
[color]
ui = true
[diff]
renames = copies
mnemonicprefix = true
[merge]
tool = meld
[rerere]
enabled = true
[push]
default = matching
[init]
defaultBranch = main
[alias]
co = checkout
ci = commit
cm = commit --message
st = status --short
s = status --short --branch --untracked-files=all
l = log --graph --decorate
last = log --decorate -1
last3 = log --decorate -3
d = diff
b = branch
ff = merge --ff-only
forget = rm --cached
rollback = reset --soft HEAD^
authors = !git log --all --format='%aN <%cE>' | sort -u
[include]
path = ~/.gitconfig.work