Skip to content

Instantly share code, notes, and snippets.

@Angelfirenze01
Forked from tlberglund/git-loglive
Created October 16, 2018 19:10
Show Gist options
  • Select an option

  • Save Angelfirenze01/24776392e0ffeced0ec6aee01141ad78 to your computer and use it in GitHub Desktop.

Select an option

Save Angelfirenze01/24776392e0ffeced0ec6aee01141ad78 to your computer and use it in GitHub Desktop.

Revisions

  1. @tlberglund tlberglund revised this gist Oct 5, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion git-loglive
    Original file line number Diff line number Diff line change
    @@ -3,6 +3,6 @@
    while :
    do
    clear
    git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --all
    git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
    sleep 1
    done
  2. Tim Berglund created this gist Sep 13, 2012.
    8 changes: 8 additions & 0 deletions git-loglive
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    #!/bin/bash

    while :
    do
    clear
    git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --all
    sleep 1
    done