Skip to content

Instantly share code, notes, and snippets.

View sebastianjt's full-sized avatar

Sebastián Jaramillo sebastianjt

View GitHub Profile
@sebastianjt
sebastianjt / git-loglive
Last active December 20, 2015 10:39 — forked from tlberglund/git-loglive
#!/bin/bash
while :
do
clear
date +"%A %B %d, %Y at %T"
lines=`tput lines`
lines=`expr $lines - 5`
git --no-pager log --graph --decorate --pretty=oneline --abbrev-commit --color --all $* | head -n $lines
sleep 1