Skip to content

Instantly share code, notes, and snippets.

@twokul
Forked from tlberglund/gist:3208768
Created November 3, 2012 02:04
Show Gist options
  • Save twokul/4005504 to your computer and use it in GitHub Desktop.
Save twokul/4005504 to your computer and use it in GitHub Desktop.
Live Log Script
#!/bin/bash
while :
do
clear
git --no-pager log -$1 --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment