-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
59 lines (58 loc) · 996 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
50
51
52
53
54
55
56
57
58
59
# .gitconfig
# Lloyd Dilley
# https://github.com/ldilley/dotfiles
[user]
name = John Dough
email = john@dough.doh
signingkey = D34DB33F
[github]
user = jdough
token = secret
[credential]
helper = store
[core]
editor = vim
[diff]
tool = vimdiff
[merge]
tool = vimdiff
conflictstyle = diff3
[mergetool]
prompt = false
[color]
ui = auto
[grep]
lineNumber = true
[commit]
gpgsign = true
[pull]
rebase = false
[push]
default = simple
[alias]
a = add
b = branch
c = commit
d = diff
f = fetch
g = grep
l = log
s = status
ac = !git add -A . && git commit
cm = commit -m
co = checkout
cp = cherry-pick
po = push origin
st = stash
acm = !git add -A . && git commit -m
cob = checkout -b
cod = checkout develop
com = checkout master
cot = checkout test
fup = fetch upstream
pod = push origin develop
poh = push origin HEAD
pom = push origin master
pot = push origin test
rup = remote add upstream
amend = commit --amend -m