Skip to content

Instantly share code, notes, and snippets.

@githubteacher
Created February 26, 2013 11:38
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save githubteacher/5037863 to your computer and use it in GitHub Desktop.
Save githubteacher/5037863 to your computer and use it in GitHub Desktop.
A Git command to display a live log. Put this file in your path, make it executable, and run "git loglive"
#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done
@leftieFriele
Copy link

first, therefor I rock!

@pjwalstrom
Copy link

!first

@kolstae
Copy link

kolstae commented Feb 26, 2013

@runeh
Copy link

runeh commented Feb 26, 2013

With scaling based on terminal height https://gist.github.com/runeh/5038128

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