Skip to content

Instantly share code, notes, and snippets.

View davier26's full-sized avatar

Sebastian Dieser davier26

View GitHub Profile
@davier26
davier26 / git-loglive
Last active August 29, 2015 14:00 — forked from tlberglund/git-loglive
Bash func: git-loglive
function git-livelog() {
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done
}