Select the types of activity you want to include in your feed.
1#!/bin/sh -e 2 3homedir="$HOME/drop" 4if ! [ -d "$homedir" ]; then 5 git clone j3s@gibson:drop "$homedir" 6fi 7cd "$homedir" 8git pull 9git add --all 10git commit -m "$(date +%s)" 11git push