-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
104 lines (85 loc) · 2.35 KB
/
Copy pathgitconfig
File metadata and controls
104 lines (85 loc) · 2.35 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# ===============
# .gitconfig
# ===============
[alias]
a = add
aa = add --all --verbose
ap = add --patch
au = add --update --verbose
br = branch --verbose --verbose
brr = branch --all --verbose --verbose
ca = commit --all --verbose --verbose
ci = commit --verbose --verbose
co = checkout
cp = commit --patch --verbose --verbose
d = diff --patch-with-stat
dc = diff --patch-with-stat --cached
dcw = diff --patch-with-stat --cached --ignore-all-space
dcww = diff --patch-with-stat --cached --ignore-all-space --word-diff=color
dw = diff --patch-with-stat --ignore-all-space
dww = diff --patch-with-stat --ignore-all-space --word-diff=color
ll = log --decorate --oneline --graph --no-merges
lla = log --decorate --oneline --graph
lp = log --decorate --patch-with-stat --no-merges
lpw = log --decorate --patch-with-stat --no-merges --ignore-all-space
lpww = log --decorate --patch-with-stat --no-merges --ignore-all-space --word-diff=color
pl = pull
pu = push
r = remote --verbose
sl = stash list
sp = stash show --patch
ss = stash
st = status --branch --short --untracked-files=all
sync = !git stash push --include-untracked && git fetch && git reset --hard FETCH_HEAD && git gc --quiet
unstage = reset HEAD --
[branch]
sort = -committerdate
[color "branch"]
current = green bold
remote = red bold
upstream = cyan bold
[color "diff"]
commit = yellow bold
frag = cyan bold
new = green bold
old = red bold
[color "status"]
header = bold
added = yellow bold
changed = green bold
untracked = cyan bold
[core]
quotepath = false
[diff]
algorithm = histogram
mnemonicPrefix = true
renames = copy
statGraphWidth = 48
wordRegex = [[:alnum:]]+|[^[:space:]]
[fetch]
prune = true
[help]
autocorrect = -1
[include]
path = ~/.gitconfig.local
[interactive]
singlekey = true
[merge]
ff = false
[pull]
rebase = false
[push]
default = current
autoSetupRemote = true
[rerere]
enabled = true
[url "git@github.com:"]
pushInsteadOf = https://github.com/
pushInsteadOf = git://github.com/
[url "git@gist.github.com:"]
pushInsteadOf = https://gist.github.com/
pushInsteadOf = git://gist.github.com/
[user]
name = Taichi
email = taichi@curipha.jp
# vim: filetype=gitconfig