Skip to content

Instantly share code, notes, and snippets.

@dupuchba
Forked from xero/gitlivelog.sh
Created October 17, 2012 06:49
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 dupuchba/3904078 to your computer and use it in GitHub Desktop.
Save dupuchba/3904078 to your computer and use it in GitHub Desktop.
git graph live log
#!/bin/sh
while true;
do
clear
git log \
--graph \
--all \
--color \
--date=short \
-10 \
--pretty=format:"%C(yellow)%h%x20%C(white)%cd%C(green)%d%C(reset)%x20%s%x20%C(bold)(%an)%Creset" |
cat -
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment