Changes between Version 11 and Version 12 of SVN
- Timestamp:
- Feb 17, 2007, 10:26:35 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SVN
v11 v12 32 32 Branches give us isolated environments for development, and once tested and confirmed a new work is ready, it can be simply merged in the trunk. 33 33 34 For code that doesn't bring instability, like trivial fixes or small features, there is no need to work on a separated branch. It can be committed directly to the trunk if you feel the code is ok and it is well tested. It makes the management easier. 35 34 36 The branches could be created in the following spaces: 35 37 … … 52 54 [TODO] 53 55 56 == Committing == 57 58 Try to make a single commit for each fix or feature. Avoid making big commits with lots of changes. This separation makes each commit an isolate thing. It makes code review and merge tasks easy. 59 60 The commit log message is very important. Don't underestimate it. It must be well written and informative. Whenever possible, make references to related trac items, like tickets or changesets. You may use one of the "standard" messages, like the following examples: 61 62 * Fixed #81: IE has a DOM bug that caused FCKDomTools.RTrimNode to break. 63 * Merged trunk r131:132 into branches/versions/2.4.x 64 * FCKeditor 2.4 tagging 65 54 66 == Links == 55 67