Kitten

Writing code for Kitten follows essentially the same process as Palacios. The difference is that the patches need to be emailed to the Kitten developers. To send in a patch, you can just email it to the V3Vee development list.

Also, instead of Stacked git you should use Mercurial patch queues. This feature is enabled in your .hgrc file.

[extensions]
hgext.mq=

Mercurial queues use the same stack operations as stacked git, however it does not automatically handle the synchronization with pull operations. Before you update from the central version of Kitten you need to pop all of the patches, and then push them once the update is complete.

Basically:

hg qpop -a
hg pull
hg update
hg qpush -a



Jack Lange 2010-04-13