13 lines
324 B
INI
13 lines
324 B
INI
|
[user]
|
||
|
email = johannes.loher@fg4f.de
|
||
|
name = Johannes Loher
|
||
|
[core]
|
||
|
editor = vim
|
||
|
[alias]
|
||
|
co = checkout
|
||
|
ci = commit
|
||
|
st = status
|
||
|
br = branch
|
||
|
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
|
||
|
bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs -r git branch -d; }; f"
|