-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.gitconfig
40 lines (40 loc) · 840 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
[user]
name = Ryuta Kamizono
email = [email protected]
[color]
diff = auto
status = auto
branch = auto
interactive = auto
[pager]
log = diff-highlight | less
show = diff-highlight | less
diff = diff-highlight | less
[core]
quotepath = false
precomposeunicode = true
excludesfile = ~/.gitignore
commentchar = ";"
[push]
default = simple
[alias]
s = status --short --branch
st = status
ci = commit
co = checkout
br = branch
di = diff
wd = diff --word-diff
pu = pull
pr = pull --rebase
tr = log --graph --pretty='format:%C(yellow)%h%Creset %s %Cgreen(%an)%Creset %Cred%d%Creset'
tree = log --graph --pretty=oneline --abbrev-commit --decorate
[url "[email protected]:"]
pushInsteadOf = "git://github.com/"
pushInsteadOf = "https://github.com/"
[credential]
helper = cache
[ghq]
root = ~/src
[submodule]
recurse = true