Changes between Version 91 and Version 92 of DownloadSource


Ignore:
Timestamp:
Mar 23, 2018, 5:37:52 AM (6 years ago)
Author:
Even Rouault
Comment:

Migration to github

Legend:

Unmodified
Added
Removed
Modified
  • DownloadSource

    v91 v92  
    343343== Development version and source control ==
    344344
    345 The 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.
    346 
    347 With the subversion client software installed, the current development version can be extracted using the command:
     345The GDAL/OGR software lives in the https://github.com/OSGeo/gdal source control system.
     346
     347With the git client software installed, the current development version can be extracted using the command:
    348348
    349349{{{
    350   svn checkout https://svn.osgeo.org/gdal/trunk/gdal gdal
     350  git clone https://github.com/OSGeo/gdal
    351351}}}
    352352
    353 It is also mirrored on !GitHub at:
     353To extract the current stable version use the command:
     354
    354355{{{
    355   https://github.com/OSGeo/gdal
     356  # current stable
     357  git checkout release/2.2
    356358}}}
    357359
    358 To extract the current stable version use the command:
    359 
    360 {{{
    361   # old stable
    362   svn checkout https://svn.osgeo.org/gdal/branches/2.1/gdal gdal
    363 
    364   # current stable
    365   svn checkout https://svn.osgeo.org/gdal/branches/2.2/gdal gdal
    366 }}}
    367 
    368 Update access to the Subversion repository is governed by [wiki:rfc3_commiters RFC 3: GDAL Committer Guidelines].  Committers 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:
    369 
    370 {{{
    371   svn commit -m "fix buffer overwrite in RawRasterBand::RasterIO() (fixes #999)" rawdataset.cpp --username warmerdam
    372 }}}
    373 
    374 ([https://trac.edgewall.org/wiki/CommitTicketUpdater more information about ticket manipulation from commit messages])
     360Update access to the github repository is governed by [wiki:rfc3_commiters RFC 3: GDAL Committer Guidelines].