-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
72 lines (72 loc) · 1.87 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
[user]
name = Boris Burkov
email = [email protected]
[include]
path = ~/.gitmail
[core]
editor = vim
pager = less -FRX
excludesfile = ~/.gitignore
[github]
user = boryas
[alias]
b = branch
bnew = checkout -b
ci = commit
cia = commit -a
cim = commit -m
cima = commit -a -m
civ = commit -v
civa = commit -v -a
co = checkout
cp = cherry-pick
config-to-push-all-branches = config --add remote.origin.push '+refs/heads/*:refs/heads/*'
config-to-push-all-tags = config --add remote.origin.push '+refs/tags/*:refs/tags/*'
d = diff
dc = diff --cached
diffc = diff --cached
forkup = pull --rebase upstream
last = log -1
newb = checkout -b
quicklog = log --oneline -20
ql = log --oneline -20
r = remote
rewind-one = reset --hard HEAD^
st = status -sb
sta = stash
svnci = svn dcommit
svnprep = rebase -i git-svn
svnup = svn rebase
today = diff --stat 'HEAD@{midnight}'
tree = log --graph --oneline --all
unstage = reset HEAD
up = pull --rebase origin
url = remote get-url
yesterday = diff --stat 'HEAD@{yesterday}' 'HEAD@{midnight}'
fixes = show -s --pretty='format:%h (\"%s\")'
[color]
diff = auto
status = auto
branch = auto
[color "diff"]
meta = blue
frag = black
old = red
new = green
[color "status"]
added = green
changed = yellow
untracked = cyan
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[format]
coverLetter = auto
thread = shallow
[branch]
autosetuprebase = remote
[log]
decorate = short
[sendemail]
suppresscc = all