Changes between Version 52 and Version 53 of UsingGitWithWebKit


Ignore:
Timestamp:
Jul 28, 2010 2:51:56 PM (14 years ago)
Author:
dimich@chromium.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v52 v53  
    7171   git svn fetch
    7272}}}
     73
     74If you don't fetch new revisions from Subversion very often and find fetching them one by one too slow, you can modify the svn section in your .git/config file to point directly to the '''refs/remotes/origin/master''' rather then '''refs/remotes/trunk''' which is how it is set up by default. In this case 'git svn fetch' will be way faster if done after "git fetch" or "git pull", since it'll realize it already has all the revisions locally. Edit your svn entry to look like this:
     75
     76{{{
     77[svn-remote "svn"]
     78        url = http://svn.webkit.org/repository/webkit
     79        fetch = trunk:refs/remotes/origin/master
     80}}}
     81
     82and then re-build the svn index by doing 'git svn fetch' once.
    7383
    7484== Commit manually through git-svn directly ==