forked from vpetkov/rcfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
64 lines (50 loc) · 927 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
53
54
55
56
57
58
59
60
61
62
63
[user]
name = Vesselin Petkov
email = [email protected]
[github]
user = vpetkov
[alias]
co = checkout
cb = checkout -b
files = show --name-only --oneline
update = commit --all --verbose
oneline = log --oneline --decorate -32
patch = add --patch
lol = log --oneline --graph --decorate
st = status --short
ci = commit --verbose
[core]
editor = vim
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
[pager]
log = off
show = off
diff = off
[branch]
autosetuprebase = always
[push]
default = tracking
[diff]
tool = vimdiff
noprefix = true
[merge]
tool = vimdiff
ff = false
[help]
autocorrect = 1
[color]
ui = on
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
frag = yellow
old = red
new = cyan
whitespace = red reverse
[color "status"]
added = yellow
changed = green
untracked = cyan