Changes between Version 10 and Version 11 of UsingGitToMaintainGDALWorkflow


Ignore:
Timestamp:
Dec 25, 2010, 2:04:38 PM (13 years ago)
Author:
Mateusz Łoskot
Comment:

Moved GDAL Git mirror from Gitorious to GitHub

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitToMaintainGDALWorkflow

    v10 v11  
    5252}}}
    5353
    54 You can also push the local copy to your own Git remote repository to share your development experiments, then others will be able to ''clone'' it. For example, you can push it to [http://gitorious.org/ Gitorious] (''yourproject'' and ''gdal-svn-trunk'' denote names of your own choice)
     54You can also push the local copy to your own Git remote repository to share your development experiments, then others will be able to ''clone'' it. For example, you can push it to [http://github.com/ GitHub]:
    5555
    5656{{{
    57 $ git push --all git@gitorious.org:yourproject/gdal-svn-trunk.git
     57$ git push --all git@github.com:mloskot/gdal.git
    5858}}}
    5959
     
    6262{{{
    6363$ git svn --authors-file=/path/to/gdal-git-authors.txt rebase
    64 $ git push git@gitorious.org:yourproject/gdal-svn-trunk.git
     64$ git push git@github.com:mloskot/gdal.git
    6565}}}
    6666
    6767
    68 == Gitorious Mirror ==
     68== GitHub Mirror ==
    6969
    70 I try to maintain up-to-date Git repository with mirror of GDAL Subversion trunk. It is available as [http://gitorious.org/gdal/svn-trunk svn-trunk] repository from http://gitorious.org/gdal/ project.
     70I try to maintain up-to-date Git repository with mirror of GDAL Subversion trunk. It is available as [https://github.com/mloskot/gdal gdal repository maintained by [https://github.com/mloskot/ mloskot].
    7171
    7272Note, if you are GDAL committer, clone of this repository will not allow you to issue ''git svn dcommit'' command to push your changes back to GDAL trunk. If you expect this functionality, you need to maintain Git repository of GDAL trunk on your own according to the steps described above. Quoting one of [http://stackoverflow.com/questions/1880405/can-different-git-svn-clones-of-the-same-svn-repository-expect-to-be-able-to-shar/1880487#1880487 best practices listed here]: