#!/bin/sh -e

homedir="$HOME/drop"
if ! [ -d "$homedir" ]; then
	git clone j3s@gibson:drop "$homedir"
fi
cd "$homedir"
git pull
git add --all
git commit -m "$(date +%s)"
git push
