Changes between Version 1 and Version 2 of Develop/SourceControl
- Timestamp:
- Oct 8, 2016, 1:14:33 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Develop/SourceControl
v1 v2 31 31 This creates a working copy in (new) directory _stable_. 32 32 33 ==== Reporting fixes from release into trunk === 33 ==== Reporting fixes from release into trunk ==== 34 34 After they're coded and packaged, the fixes can be reported back to trunk (so the next unstable version also benefits from the fixes). To do so: 35 #change directory to a working copy of trunk, and type:35 1. change directory to a working copy of trunk, and type: 36 36 {{{ 37 37 svn merge svn://pulkomandy.tk/GrafX2/branches/release/ 38 38 }}} 39 #Solve any conflicts (sometimes the fixes are already applied but differently)40 #Check in.39 1. Solve any conflicts (sometimes the fixes are already applied but differently) 40 1. Check in. 41 41 42 ==== New release === 42 ==== New release ==== 43 43 When the trunk is deemed stable, the release branch is upgraded to match its version: 44 #Change directory to a working copy of the release branch.45 #Change the version label (remove "wip")44 1. Change directory to a working copy of the release branch. 45 1. Change the version label (remove "wip") 46 46 {{{ 47 47 svn merge svn://pulkomandy.tk/GrafX2/branches/trunk/ 48 48 }}} 49 #Solve any conflicts.50 #Check in.49 1. Solve any conflicts. 50 1. Check in. 51 51 When done, you generally change the version label in trunk by adding 0.1 and "wip". 52 52