Skip to content

Instantly share code, notes, and snippets.

@daniellima
Last active May 26, 2018 20:54
Show Gist options
  • Select an option

  • Save daniellima/01b5a728d5692ef30bf767a4a562994d to your computer and use it in GitHub Desktop.

Select an option

Save daniellima/01b5a728d5692ef30bf767a4a562994d to your computer and use it in GitHub Desktop.
Snippets to show git info live while you execute git commands. Good for demonstration
Snippets to show git info live while you execute git commands. Good for demonstration
while true;
do
clear
git log \
--oneline \
--graph \
--all \
--color \
-14
sleep 1
done
while true;
do
clear
git status
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment