-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
52 lines (52 loc) · 1013 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[color]
branch = auto
diff = auto
status = auto
ui = auto
interactive = auto
[user]
name = Filippo Liverani
email = [email protected]
[core]
editor = vim
attributesfile = /Users/filippo/.gitattributes
pager = delta
[alias]
st = status
ci = commit
br = branch
pl = pull
ps = push
co = checkout
df = diff --color --patience
dc = diff --color
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --decorate=full --all
who = shortlog -s -s-
aa = add -A
us = reset
uc = reset --soft HEAD^
tu = stash -u
rb = rebase -i --autosquash
fu = commit --fixup
ctags = !.git/hooks/ctags
[push]
default = upstream
[merge]
tool = vimdiff
ff = only
conflictstyle = diff3
[diff]
tool = vimdiff
colorMoved = default
[pull]
rebase = true
[fetch]
prune = true
[init]
templatedir = ~/.git_template
[help]
autocorrect = 1
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true