-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
44 lines (44 loc) · 1.27 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
[user]
name = Samuel Flores
email = [email protected]
[diff]
[color]
ui = auto
[alias]
st = status
ci = commit
co = checkout
di = diff
dc = diff --cached
amend = commit --amend
aa = add --all
l = log --graph --abbrev-commit --date=relative
head = !git l -1
h = !git head
r = !git l -20
ra = !git r --all
ff = merge --ff-only
plff = pull --ff-only
noff = merge --no-ff
la = !git l --all
div = divergence
gn = goodness
gnc = goodness --cached
fa = fetch --all
pom = push origin master
b = branch
ds = diff --stat=160,120
dh1 = diff HEAD~1
[format]
pretty = format:%C(yellow)%h%Creset -%C(red)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset
[merge]
tool = vimdiff
[core]
excludesfile = ~/.gitignore_global
[branch "master"]
remote = origin
merge = refs/head/master
[github]
user = samflores
[push]
default = simple