git-global-config

.git/config
[alias]
logg = log --color --graph --decorate -M --pretty=oneline --abbrev-commit -M
sbtime = !"for k in `git branch|perl -pe s/^..//`;do echo `git show --pretty=format:\"%Cgreen%ci %Cblue%cr%Creset\" $k|head -n 1`\\\t$k;done|sort"
sbrtime = !"for k in `git branch -r|perl -pe s/^..//`;do echo `git show --pretty=format:\"%Cgreen%ci %Cblue%cr%Creset\" $k|head -n 1`\\\t$k;done|sort"

log

git config --global alias.logg 'log --color --graph --decorate -M --pretty=oneline --abbrev-commit -M'