Changes between Version 12 and Version 13 of UsingGitWithWebKit


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

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v12 v13  
    2626}}}
    2727
    28 If you'd also like to track the svn repository:
     28If you'd also like to track the svn repository (the {{{git update-ref}}} command is the secret to reusing the cloned git repository to fast-forward to the tip of the svn repository):
    2929
    3030{{{
     
    3636== Updating ==
    3737
    38 In case you're new to git, this command pulls updates from the repository that you previously cloned:
     38If you're new to git, this command pulls updates from the repository that you previously cloned:
    3939
    4040{{{
     
    4242}}}
    4343
    44 If you are also tracking the svn repository, this will update the {{{trunk}}} branch in git:
     44If you are also tracking the svn repository, this will update the svn-based {{{trunk}}} branch in git:
    4545
    4646{{{
    47       git svn fetch
     47   git svn fetch
    4848}}}
    4949
    50 If 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:
     50If the current branch is based on the svn repository, this command will pull in commits from svn and rebase local commits on top of them:
    5151
    5252{{{