Changes between Version 52 and Version 53 of UsingGitWithWebKit
- Timestamp:
- Jul 28, 2010, 2:51:56 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v52 v53 71 71 git svn fetch 72 72 }}} 73 74 If 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 82 and then re-build the svn index by doing 'git svn fetch' once. 73 83 74 84 == Commit manually through git-svn directly ==