ledger/tools/push
2009-10-31 05:34:49 -04:00

11 lines
192 B
Bash
Executable file

#!/bin/sh
set -e
(cd plan/data; git push)
(cd plan; git commit -a -m "Update TODO files" && git push)
git checkout master
git merge --no-ff next
git checkout next
git rebase master
git push