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 September 26, 2024 20:40
Log Live Git Command
#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done