Skip to content

Instantly share code, notes, and snippets.

View davidfischer's full-sized avatar

David Fischer davidfischer

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