-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
49 lines (49 loc) · 838 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
[user]
name = Shintaro Kobori
email = [email protected]
# signingkey = xxxxxxxx
[commit]
# gpgsign = true
[color]
ui = auto
[push]
default = current
[core]
editor = vim
pager = less
excludesfile = ~/.gitignore
quotepath = false
[diff]
algorithm = histogram
[log]
decorate = short
[alias]
a = add
ap = add -p
b = branch
ba = branch -a
c = commit
ca = commit -a
cl = clone
co = checkout
d = diff
dm = diff master
ds = diff --staged
dsw = diff --staged --word-diff
dw = diff --word-diff
dws = diff --word-diff --staged
f = fetch
l = log --graph --stat
la = log --graph -p --stat
lg = log --graph
lp = log -p
ls = log --stat
pl = pull
ps = push
root = rev-parse --show-toplevel
rs = reset
rsh = reset --hard
rss = reset --soft
rv = revert
s = status
sh = show