Skip to content

Instantly share code, notes, and snippets.

View davidfischer's full-sized avatar

David Fischer davidfischer

  • Read the Docs
  • San Diego, CA
  • 04:02 (UTC -07:00)
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