Last active
December 17, 2024 15:20
-
-
Save timabell/6990292 to your computer and use it in GitHub Desktop.
poll git servers for new commits
This file contains hidden or 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 | |
| # https://gist.github.com/timabell/6990292 | |
| title "git poll - `pwd`" | |
| while true | |
| do | |
| date | |
| echo "Polling git servers..." | |
| git fetch --all | |
| git st | |
| echo "Zzzzz" | |
| sleep 600 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment