# HG changeset patch # User Oleksandr Gavenko # Date 1317857087 -10800 # Node ID 6b9436fefab88d8106830aa428a35737bce90c53 # Parent 3bed672ff6b904159f0b4466af86f2fa22e0f1ff Branch types. diff -r 3bed672ff6b9 -r 6b9436fefab8 devel-proj-branching.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/devel-proj-branching.rst Thu Oct 06 02:24:47 2011 +0300 @@ -0,0 +1,26 @@ +=========================== + Project branching models. +=========================== +.. contents:: + +Branch types. +============= + +Development branch. +------------------- + + * For main development activities. + * Usually for bug fixes, small enhancements. + * Also for development if project on initial development stage. + +Names: dev, devel, trunk + +Release branch. +--------------- + + * Used to support long running major/minor versions (include bug fixes or + features backporting). + * No any new features development. + * Release branch created from development branch. + * From release branch you make tags to product releases for customer. +