Created
February 26, 2013 11:38
-
-
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"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
sleep 1 | |
done |
!first
With watch:
https://gist.github.com/kolstae/5037948
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
first, therefor I rock!