Changes between Version 16 and Version 17 of HowToSVN
- Timestamp:
- 04/28/08 02:08:05 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToSVN
v16 v17 37 37 * See DownloadSource 38 38 39 === Making changes === 40 41 * Double check that you are using the latest revision of the development branch before embarking on any changes. 42 43 {{{ 44 svn up raster/r.digit/ 45 }}} 46 39 47 === Diffs === 40 48 … … 60 68 * Please make the {{{-m}}} commit log message meaningful. It is your chance to explain "why". If you refer to bug numbers in the form "#123" the Trac system will automatically create a link from the message to the bug report. The same is true for revision changes, e.g. "r12345". 61 69 {{{ 70 svn diff raster/r.digit/main.c | less 62 71 svn commit raster/r.digit/main.c \ 63 72 -m "fix bug #123: uninitialized variable (merge r12345 from trunk)" … … 71 80 cd releasebranch_6_3/ 72 81 svn merge -c 30749 https://svn.osgeo.org/grass/grass/trunk 82 svn diff raster/r.digit/main.c 83 svn commit raster/r.digit/main.c \ 84 -m "fix bug #456: unsafe quoting (merge from trunk, r30749)" 73 85 }}} 74 86