Changes between Version 33 and Version 34 of UsingGitWithWebKit
- Timestamp:
- Aug 18, 2009 7:12:22 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v33 v34 36 36 }}} 37 37 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):38 If 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: 39 39 40 40 {{{ 41 41 cd WebKit 42 git svn init -T trunk http://svn.webkit.org/repository/webkit 42 43 git update-ref refs/remotes/trunk origin/master 43 git svn init -T trunk http://svn.webkit.org/repository/webkit44 44 }}} 45 45