-
-
Save jcsalterego/107717 to your computer and use it in GitHub Desktop.
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 | |
# first you'll want to create a gist then `git clone` the private url | |
# second you'll want to run this script in the gist's directory | |
while [ 1 ]; do | |
git commit -a -m save && git push origin master; | |
sleep $(echo "60 * 4" | bc); | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment