Development Process

To simplify the process for outside patches and unofficial forks I have moved the source from SVN to Git.

Simple Patch Creation

   git clone git://armooo.net/pyTivo.git
   cd pyTivo
   (edit files)
   git commit -a
   
   repeat

   (edit files)
   git commit -a

   git pull (get any updates and merge them in to your branch)

   git format-patch -o mypatch origin (create a patch file for each commit 
                                       that is not the origin and place them 
                                       in the directory mypatch)

Public Repo

You can also setup a public repo so that other can submit patches to you, and pull changes directly from you. Public git repos are available from repo.or.cz click fork on the menu.

Other Git Info