Edgewall Software

Changes between Version 5 and Version 6 of TracDev/DevelopmentWorkflow


Ignore:
Timestamp:
Feb 15, 2015, 11:50:06 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

Reword.

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/DevelopmentWorkflow

    v5 v6  
    55== Objective
    66
    7 The public branches listed in TracDownload#LatestDevelopmentSourceCode should remain bug free and always usable from an end-user perspective, as we support people installing directly from there.
     7The public branches listed in TracDownload#LatestDevelopmentSourceCode should remain bug free and always usable from an end-user perspective, as we support installing directly from the branches.
    88
    99== Initial code review
     
    2222
    2323Here's a walk through example. We start by hacking on [source:branches/0.12-stable 0.12-stable]:
    24 {{{
     24{{{#!sh
    25250.12-stable$ ed trac/attachment.py # or your other favorite editor ;-)
    26260.12-stable$ make test
     
    3131
    3232Now we want to port all the pending changes to [source:branches/1.0-stable]:
    33 {{{
     33{{{#!sh
    34340.12-stable$ cd ../1.0-stable
    35351.0-stable$ svn merge ^/branches/0.12-stable
     
    4242
    4343Now we want to port all the pending changes to [source:trunk]:
    44 {{{
     44{{{#!sh
    45451.0-stable$ cd ../trunk
    4646trunk$ svn merge ^/branches/1.0-stable