Changes between Version 33 and Version 34 of UsingGitWithWebKit


Ignore:
Timestamp:
Aug 18, 2009 7:12:22 PM (15 years ago)
Author:
mrowe@apple.com
Comment:

Make it better!

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v33 v34  
    3636}}}
    3737
    38 If you'd also like to track the Subversion repository (the {{{git update-ref}}} command is the secret to reusing the cloned git repository to fast-forward to the tip of the Subversion repository):
     38If you'd also like to track the Subversion repository you will need to inform `git-svn` of the location of the WebKit SVN repository, and update the branch that `git-svn` uses to track the Subversion repository so that it will re-use the history that we've already cloned from `git.webkit.org` rather than trying to fetch it all from Subversion:
    3939
    4040{{{
    4141   cd WebKit
     42   git svn init -T trunk http://svn.webkit.org/repository/webkit
    4243   git update-ref refs/remotes/trunk origin/master
    43    git svn init -T trunk http://svn.webkit.org/repository/webkit
    4444}}}
    4545