Skip to content

Instantly share code, notes, and snippets.

@kdheepak
Forked from tlberglund/git-loglive
Created September 15, 2015 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kdheepak/411faf89190856c6458b to your computer and use it in GitHub Desktop.
Save kdheepak/411faf89190856c6458b to your computer and use it in GitHub Desktop.
Log Live Git Command
#!/bin/bash
while :
do
clear
git --no-pager log --graph --abbrev-commit --decorate --color=always --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) - %C(dim red)%an%C(reset)%C(bold yellow)%d%C(reset)' --all $*
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment