-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitconfig
40 lines (40 loc) · 889 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
[user]
name = Leo Cassarani
email = [email protected]
[alias]
s = status
ci = commit
co = checkout
gogogo = !git aa && git continue
continue = rebase --continue
skip = rebase --skip
di = diff
dc = diff --cached
amend = commit --amend
aa = add --all
head = !git l -1
r = !git l -30
l = log --graph --abbrev-commit --date=relative
master = checkout master
pom = push origin master
plom = pull origin master
plrom = pull --rebase origin master
pop = stash pop
b = branch
standup = log --since yesterday
unstage = reset HEAD --
[core]
editor = vim -f
quotepath = false
autocrlf = input
excludesfile = ~/.gitignore_global
[color]
ui = auto
[format]
pretty = format:%C(yellow)%h%Creset -%C(red)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset
[github]
user = leocassarani
[merge]
conflictstyle = diff3
[rerere]
enabled = true