Skip to content

Instantly share code, notes, and snippets.

@tlberglund
Created July 30, 2012 18:08
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save tlberglund/3208768 to your computer and use it in GitHub Desktop.
Save tlberglund/3208768 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
@evgeny-goldin
Copy link

Thanks! Very useful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment