100
|
1 [alias]
|
|
2 brach = branch
|
|
3 branches = branch
|
|
4 co = checkout
|
|
5 comit = commit
|
|
6 lg = log --format=oneline --graph --abbrev-commit --decorate
|
|
7 rpo = remote prune origin
|
|
8 st = status
|
|
9 wipe = !git add -A && git commit -qm 'WIPE SAVEPOINT' && git reset HEAD~1 --hard
|
|
10
|
|
11 [color]
|
|
12 ui = false
|
|
13
|
|
14 [http]
|
|
15 sslVerify = false
|
|
16
|
|
17 [push]
|
|
18 default = simple
|
|
19
|
|
20 [user]
|
|
21 name = Dirk Olmes
|
|
22 # do not set an email address here - it must be configured for different
|
|
23 # repositories with different values
|