-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
51 lines (50 loc) · 1.11 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
48
49
50
51
[user]
name = Daisuke Fujiwara
email = [email protected]
username = daisuke
[core]
editor = vim
[color]
ui = true
[alias]
c = checkout
ct = commit
cta = commit --amend
ctae = commit --amend --no-edit
f = fetch
s = status -sb
d = diff
ds = diff --staged
b = branch
a = add
au = add -u
ap = add -p
l = log
ls = log --pretty=oneline --decorate
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)%Creset' --abbrev-commit
p = pull --prune
ps = push
r = reset
ld = log --no-merges --cherry --pretty=oneline
cb = !git branch --merged master | grep -v 'master' | grep -v '*' | xargs -n 1 git branch -d
bp = !hub browse -- pulls
bb = !hub browse -- branches
opr = !hub pull-request
prv = !gh pr view --web
prc = !gh pr create --fill
prs = !gh pr status
prm = !gh pr merge -s -d
[remote "origin"]
prune = true
[pull]
rebase = true
[rebase]
autosquash = true
[pager]
branch = false
[help]
autocorrect = 1
[fetch]
prune = true
[advice]
skippedCherryPicks = false