Changes between Version 8 and Version 9 of UsingGitToMaintainGDALWorkflow


Ignore:
Timestamp:
Feb 18, 2010, 1:07:41 PM (14 years ago)
Author:
Mateusz Łoskot
Comment:

Updated UsingGit workflow

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitToMaintainGDALWorkflow

    v8 v9  
    3434
    3535{{{
    36 $ git svn rebase
     36$ git svn --authors-file=/path/to/gdal-git-authors.txt rebase
    3737}}}
    3838
     
    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://gitorious.org/ Gitorious] (''yourproject'' and ''gdal-svn-trunk'' denote names of your own choice)
    5555
    5656{{{
    5757$ git push --all git@gitorious.org:yourproject/gdal-svn-trunk.git
    5858}}}
     59
     60Once local clone of a ''git-svn'' enabled repository is ready for the cycle of ''svn update'' and ''git push'', the routine of updating mirror includes the following two commands only:
     61
     62{{{
     63$ git svn --authors-file=/path/to/gdal-git-authors.txt rebase
     64$ git push git@gitorious.org:yourproject/gdal-svn-trunk.git
     65}}}
     66
    5967
    6068== Gitorious Mirror ==