Skip to content

Instantly share code, notes, and snippets.

View pjwalstrom's full-sized avatar

Per Jørgen Walstrøm pjwalstrom

View GitHub Profile
@githubteacher
githubteacher / git-loglive
Created February 26, 2013 11:38
A Git command to display a live log. Put this file in your path, make it executable, and run "git loglive"
#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done