-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
75 lines (64 loc) · 1.33 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[color]
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
frag = magenta bold
old = red bold
new = green bold
commit = yellow bold
whitespace = red reverse
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
st = status -s
ci = commit
br = branch
co = checkout
df = diff
dc = diff --cached
lg = log -p
pr = pull --rebase
p = push
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
latest=for-each-ref --sort=-taggerdate --format='%(refname:short)' --count=1
po = !git push origin -u `git rev-parse --abbrev-ref HEAD`
[push]
default = upstream
[merge]
tool = meld
[branch]
autosetuprebase = always
[rebase]
autostash = true
autosquash = true
[user]
email = me.raddadi@gmail.com
name = Ouradze
[core]
editor = lvim
pager = diff-so-fancy | less --tabs=4 -RFX
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[cola]
spellcheck = false
[gui]
editor = nvim
[pager]
diff = delta
log = delta
reflog = delta
show = delta
[interactive]
diffFilter = delta --color-only --features=interactive
[include]
path = .gitconfig.local