Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
keith d. zimmerman wrote: > Ok, so i make a branch, work on it for three months - merging from the trunk on > occassion, of course - and merge back into the trunk. Branch development is > complete, the new feature is enabled, and (hopefully) the regular releases have > not been screwed. Now what happens to my branch? All branch information is maintained within the repository; just ignore it. The whole idea behind a version control system is to be able to recreate any point in time, including branches. The recommended methodology is to create a tag at the last point before the branch gets merged to the HEAD, so that you can go back to that point easily. HTH John