-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
44 lines (44 loc) · 923 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
[user]
name = Mason Glidden
email = [email protected]
[color]
ui = true
[core]
editor = /usr/bin/vim
[alias]
a = add
b = branch
c = commit
ca = commit --amend
can = commit --amend --no-verify
cn = commit --no-verify
cp = cherry-pick
co = checkout
com = checkout master
d = diff
ds = diff --stat
g = grep
l = log
lg = log --graph --pretty=format:'%Cred%h%Creset - %C(yellow)<%an>%Creset %s %Cgreen(%cr)' --abbrev-commit --date=relative
mff = merge --ff-only
poh = push origin HEAD
pom = pull origin master
r = reset
ra = rebase --abort
rc = rebase --continue
rh = reset --hard
rhh = reset --hard HEAD
ri = rebase -i
rim = rebase -i master
riom = rebase -i origin/master
s = status
sb = submodule
sbu = submodule update --recursive --init
sbs = submodule sync
sh = show
st = stash
stp = stash pop
[merge]
conflictstyle = diff3
[push]
default = simple