Hacker News new | ask | show | jobs
by wulczer 3880 days ago
Since all of the previous states are there in the repo history, you can make that gif yourself at any moment!
1 comments

  for c in `git log --oneline --reverse | awk '{print  $1}'`
  do
    clear; echo "$c"; git --no-pager show $c:README; sleep 1; 
  done
is what one could use on a terminal
You can remove the pipe to awk by replacing:

  --oneline
with

  --pretty=format:"%h"