Changes between Version 11 and Version 12 of UsingGitWithWebKit


Ignore:
Timestamp:
Dec 13, 2007 7:16:34 PM (16 years ago)
Author:
ddkilzer@apple.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v11 v12  
    2020== Checkout ==
    2121
     22To checkout WebKit using git:
     23
    2224{{{
    23    git clone git://git.webkit.org/WebKit.git
     25   git clone git://git.webkit.org/WebKit.git WebKit
     26}}}
     27
     28If you'd also like to track the svn repository:
     29
     30{{{
     31   cd WebKit
     32   git update-ref refs/remotes/trunk origin/master
     33   git svn init -T trunk http://svn.webkit.org/repository/webkit
    2434}}}
    2535
    2636== Updating ==
    2737
    28 In case you're new to git, this command pulls updates from the repository you cloned during checkout:
     38In case you're new to git, this command pulls updates from the repository that you previously cloned:
    2939
    3040{{{
    3141   git pull
     42}}}
     43
     44If you are also tracking the svn repository, this will update the {{{trunk}}} branch in git:
     45
     46{{{
     47      git svn fetch
     48}}}
     49
     50If the current branch is based on the svn repository, this command will pull in commits from svn and rebase local changes on top of them:
     51
     52{{{
     53   git svn rebase
    3254}}}
    3355