-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot.gitconfig
45 lines (45 loc) · 897 Bytes
/
dot.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
[user]
email = [email protected]
name = Kunihiko Ito
[color]
ui = auto
[alias]
st = status -sb
ps = push
pl = pull
pr = pull --rebase
ch = checkout
co = checkout
cm = commit -m
ad = add -A
c = commit -v
ca = commit -v --amend
l = log --decorate --graph
lo = log --decorate --graph --oneline
lg = log --graph --decorate
la = log --decorate --graph --oneline --all
br = branch
ba = branch -a
d = diff
ds = diff --staged
delete-merged-branch = "!f () { git checkout $1; git branch --merged|egrep -v '\\*|develop|master'|xargs git branch -d; };f"
[github]
user = kunitoo
[core]
fileMode = false
editor = /usr/bin/vim
excludesfile = ~/.gitignore
pager = diff-highlight | less
commentchar = ^
[help]
autocorrect = 1
[push]
default = current
[ghq]
root = ~/src
[credential]
helper = store
[pull]
ff = only
[init]
defaultBranch = main