Skip to content

Instantly share code, notes, and snippets.

@davier26
Forked from tlberglund/git-loglive
Last active August 29, 2015 14:00
Show Gist options
  • Save davier26/11275655 to your computer and use it in GitHub Desktop.
Save davier26/11275655 to your computer and use it in GitHub Desktop.
Bash func: git-loglive
function git-livelog() {
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment