-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
48 lines (41 loc) · 929 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
[push]
default = tracking
[user]
name = Nikos Giallelis
email = [email protected]
[color]
branch = auto
diff = auto
interactive = auto
status = auto
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
frag = magenta
old = red
new = green
[color "status"]
added = green
changed = red
untracked = cyan
[core]
autocrlf = false
savecrlf = false
editor = nano
[alias]
pl = pull
pr = pull --rebase --prune
st = status
co = checkout
com = commit
ct = commit -m
ps = push
who = shortlog -s
lg = log
lc = log ORIG_HEAD.. --stat --no-merges
lol = log --pretty=oneline --abbrev-commit --graph --decorate
br = branch