-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
48 lines (45 loc) · 1.32 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
[user]
name = murase_syuka
email = [email protected]
[color]
diff = auto
status = auto
branch = auto
[alias]
s = status
st = status
ci = commit
co = checkout
cob = checkout -b
br = branch
sh = !git-sh
a = add
aa = add -A
aw = !"git diff -w --no-color | git apply --cached"
b = branch
ba = branch -a
sa = stash
sap = stash pop
sm = submodule
sup = submodule update --recursive
smup = submodule update
di = diff
dic = diff --cached
r = reset
re = remote
reup = remote update
m = merge
svnci = svn dcommit -e
svnre = svn rebase
pullup = pull --ff-only upstream master
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
lga = log --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
[core]
pager = lv -c
editor = vim -c \"set fenc=utf-8\"
[merge]
ff = false
[push]
default = simple
[git-buildpackage]
upstream-tag = upstream%(version)s