Changes between Version 16 and Version 17 of HowToSVN


Ignore:
Timestamp:
Apr 28, 2008, 2:08:05 AM (16 years ago)
Author:
hamish
Comment:

svn up, diff, etc

Legend:

Unmodified
Added
Removed
Modified
  • HowToSVN

    v16 v17  
    3737 * See DownloadSource
    3838
     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
    3947=== Diffs ===
    4048
     
    6068 * 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".
    6169{{{
     70    svn diff raster/r.digit/main.c | less
    6271    svn commit raster/r.digit/main.c \
    6372      -m "fix bug #123: uninitialized variable (merge r12345 from trunk)"
     
    7180    cd releasebranch_6_3/
    7281    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)"
    7385}}}
    7486