Skip to content

Instantly share code, notes, and snippets.

@enricmcalvo
Forked from xero/gitlivelog.sh
Created August 14, 2013 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enricmcalvo/6228470 to your computer and use it in GitHub Desktop.
Save enricmcalvo/6228470 to your computer and use it in GitHub Desktop.
#!/bin/sh
while true;
do
clear
git log \
--graph \
--all \
--color \
--date=short \
-40 \
--pretty=format:"%C(yellow)%h%x20%C(white)%cd%C(green)%d%C(reset)%x20%s%x20%C(bold)(%an)%Creset" |
cat -
sleep 15
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment