Changes between Version 67 and Version 68 of WebKitGTK/1.10.x


Ignore:
Timestamp:
Sep 20, 2012 4:45:43 AM (12 years ago)
Author:
kalevlember@gmail.com
Comment:

Added a note how to use git-svn to clone webkit-1.10 branch

Legend:

Unmodified
Added
Removed
Modified
  • WebKitGTK/1.10.x

    v67 v68  
    7474 $ git log --pretty=oneline <commit>.. | cut -d ' ' -f 5- | sed "s,\(.\+\)\(https://bugs.*\),  * ~~[\2] ''\1''~~,"
    7575}}}
     76
     77= How to add a webkit-1.10 branch to existing git-svn clone =
     78
     79If 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
     86and run the following commands:
     87{{{
     88git svn fetch webkit-1.10 -r <revision-where-we-branched-is-in-the-wiki>
     89git branch --track webkit-1.10 git-svn-webkit-1.10
     90}}}