Skip to content

Instantly share code, notes, and snippets.

View johnbland-wf's full-sized avatar

John C. Bland II johnbland-wf

  • Workiva
  • Houston, TX
View GitHub Profile
@tlberglund
tlberglund / git-loglive
Last active January 12, 2024 03:40
Log Live Git Command
#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done