#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
sleep 1 | |
done |
This comment has been minimized.
This comment has been minimized.
thanks. very useful |
This comment has been minimized.
This comment has been minimized.
indeed a good one! |
This comment has been minimized.
This comment has been minimized.
This is an awesome script. Quick question: After it has run for a certain period of time it simply stops. It shows "(END)" at the very bottom and wont continue looping. What can this issue be? |
This comment has been minimized.
This comment has been minimized.
@sebastianjt Not sure! Is your log longer than the terminal window? Sometimes I'll run it with a commit limit ( |
This comment has been minimized.
This comment has been minimized.
This is awesome! Thank you. |
This comment has been minimized.
This comment has been minimized.
This is awesome! Thank you. |
This comment has been minimized.
This comment has been minimized.
this helped me a lot getting into git, thank you |
This comment has been minimized.
This comment has been minimized.
Thanks Tim, btw, nice git talk! |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Nice snippet. I just caught your talk on YouTube. Thanks, it cleared up a lot of confusion. Side note, my dyslexia read this snippet as |
This comment has been minimized.
This comment has been minimized.
I came across Git From The Bits Up on YouTube and, wow, you actually talk about things I've never heard of in nearly six years of using Git! I'm learning instead of reviewing! Thanks! |
This comment has been minimized.
This comment has been minimized.
Added a version that will run on Microsoft Windows: https://gist.github.com/algonzalez/f8af7a727248b2a53ed2bcc62bcc56ba |
This comment has been minimized.
Just watched your git advanced presentation at JavaZone. Awesome stuff! And thx for that nice git-loglive script