-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
46 lines (44 loc) · 778 Bytes
/
.gitconfig
File metadata and controls
46 lines (44 loc) · 778 Bytes
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
[user]
name = Morgan Batterham
# This is where I set device specific configs e.g. email, signingKey
[include]
path = ~/.gitconfig_device
[alias]
p = push
pl = pull
po = push origin
plo = pull origin
pom = push origin master
plom = pull origin master
phm = push heroku master
s = status
a = add
aa = add .
c = commit -m
ac = commit -am
f = fetch
co = checkout
cob = checkout -b
l = log
m = merge
d = diff
cl = clone
br = branch
brd = branch -d
plod = pull origin develop
mod = merge origin develop
fi = flow init
ffs = flow feature start
fff = flow feature finish
rb = rebase
rba = rebase --abort
rbc = rebase --continue
rbi = rebase --interactive
[color]
ui = true
[core]
editor = nvim
[push]
autoSetupRemote = true
[commit]
gpgsign = true