Created
June 4, 2014 14:42
-
-
Save ddd1600/dd9a738eb6b3d7fcbedf to your computer and use it in GitHub Desktop.
textmate snippets auto backup script
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 | |
echo 'about to do an automatic backup of textmate snippets' | |
cd /Users/daviddouglas/Library/Application\ Support/Avian/Bundles | |
git add -A | |
git commit -m 'automated update' | |
git push origin master | |
echo 'automated textmate snippets backup complete.' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment