all repos — dotfiles @ 0cdc9d4803f286417684a8dc68156f2514a5f5e0

linux dotfiles

bin/scripts/org-autocommit-cron

1 2 3 4 5 6 7 8 9 10 11 12
cd $HOME/docs/org
git pull
git add . && git commit -m "auto commit: $(whoami)@may"

# check for connectivity before pushing
if nc -dzw1 google.com 443; then
    git remote | xargs -L1 git push
    cd $HOME
    pass git remote | xargs -I B pass git pull B master
    pass git remote | xargs -L1 pass git push
fi