Changes between Version 22 and Version 23 of HowToSVN


Ignore:
Timestamp:
May 22, 2008, 12:09:03 PM (16 years ago)
Author:
neteler
Comment:

+Revisit previous Diffs

Legend:

Unmodified
Added
Removed
Modified
  • HowToSVN

    v22 v23  
    1818 http://article.gmane.org/gmane.comp.gis.grass.devel/26631
    1919
     20
    2021== Switch the repository ==
    2122
     
    2930The switch command preserves local, uncommited changes.
    3031
     32
    3133== SVN usage ==
    3234
    3335 * http://svnbook.red-bean.com/
     36
    3437
    3538=== Checkout source code ===
     
    3740 * See DownloadSource
    3841
    39 === Making changes ===
    4042
    41  * Double check that you are using the latest revision of the development branch before embarking on any changes.
     43=== Before making changes ===
     44
     45 * Double check that you are using the latest revision of the development branch before embarking on any changes. Example:
    4246
    4347{{{
     
    4549}}}
    4650
    47 === Diffs ===
     51
     52=== Local Diffs ===
    4853
    4954* '''Before committing a change or submitting a patch you should review the changes'''. Viewing a diff is a nice way to do that. It is preferable to keep your patches concise- needless whitespace changes or a mixture of tasks can make it difficult to spot subtle changes introduced by your change.
     
    6065}}}
    6166
     67
     68=== Revisit previous Diffs ===
     69
     70You can easily check previously checked in changes:
     71
     72{{{
     73http://trac.osgeo.org/grass/browser/grass/trunk/raster/r.digit/main.c
     74In upper left corner, click:
     75    Last Change    Revision Log
     76}}}
     77
     78
    6279=== Commits back into the repository ===
    6380
     
    7289      -m "fix bug #123: uninitialized variable (merge r12345 from trunk)"
    7390}}}
     91
    7492
    7593=== Merge between branches (backporting) ===