#!/usr/bin/env python


import os, time
while True:
   os.system('git commit -a -m "auto-commit"')
   os.system('git push')
   time.sleep(60*5)
