Last active
January 1, 2020 01:54
-
-
Save aryelgois/b0d0bd3c7e07c9345535b3e058c310b0 to your computer and use it in GitHub Desktop.
Watch your commit history in the terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Watch your commit history in the terminal. | |
# | |
# The log is scrollable. | |
# | |
# To refresh, you have to press 'q'. To exit, press <Ctrl-c> then press 'q'. | |
# | |
# See git-log-fullest at https://gist.github.com/aryelgois/bcba085572e2786a579d82354ad540f6 | |
while git log-fullest; do :; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment