Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jkulak
Created November 22, 2016 23:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkulak/9d188fb51e4ea1821b2bb5f748a57b64 to your computer and use it in GitHub Desktop.
Save jkulak/9d188fb51e4ea1821b2bb5f748a57b64 to your computer and use it in GitHub Desktop.
Display git log live
#!/bin/bash
while :
do
clear
git --no-pager log --oneline --decorate --all --graph --date=relative $*
sleep 2
done
@jkulak
Copy link
Author

jkulak commented Nov 27, 2016

Check out https://github.com/jkulak/git-ninja to learn more about git, and become a git ninja!

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