Changes between Version 46 and Version 47 of DownloadSource


Ignore:
Timestamp:
Jan 26, 2011, 8:41:12 AM (13 years ago)
Author:
ilucena
Comment:

fix Subversion instructions

Legend:

Unmodified
Added
Removed
Modified
  • DownloadSource

    v46 v47  
    194194== Subversion ==
    195195
     196The GDAL/OGR software lives in the [http://subversion.tigris.org Subversion] source control system.  It can be browsed online using the [http://trac.osgeo.org/gdal/browser Browse Source] button on the top bar.
     197
     198With the subversion client software installed, the current development version can be extracted using the command:
     199
     200{{{
     201  svn checkout https://svn.osgeo.org/gdal/trunk/gdal gdal
     202}}}
     203
     204To extract the current stable version use the command:
     205
     206{{{
     207  svn checkout https://svn.osgeo.org/gdal/branches/1.8/gdal gdal
     208}}}
     209
     210Update access to the Subversion repository is governed by [http://www.gdal.org/rfc3_commiters.html RFC 3: GDAL Commiter Guidelines].  Commiters should take care to use https for access, and use their [http://www.osgeo.org/osgeo_userid OSGeo Userid] for authentication.  A commit command might look something like:
     211
     212{{{
     213  svn commit -m "fix buffer overwrite in RawRasterBand::RasterIO() (bug #999)" rawdataset.cpp --username warmerdam
     214}}}