| 76 | |
| 77 | = How to add a webkit-1.10 branch to existing git-svn clone = |
| 78 | |
| 79 | If you have already cloned git://git.webkit.org/WebKit.git, it only contains a git-svn clone of the svn trunk. To add webkit-1.10 branch to there, add a new remote to .git/config: |
| 80 | {{{ |
| 81 | [svn-remote "webkit-1.10"] |
| 82 | url = http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-1.10 |
| 83 | fetch = :refs/remotes/git-svn-webkit-1.10 |
| 84 | }}} |
| 85 | |
| 86 | and run the following commands: |
| 87 | {{{ |
| 88 | git svn fetch webkit-1.10 -r <revision-where-we-branched-is-in-the-wiki> |
| 89 | git branch --track webkit-1.10 git-svn-webkit-1.10 |
| 90 | }}} |