Changes between Version 21 and Version 22 of UsingGitWithWebKit


Ignore:
Timestamp:
Jun 25, 2009 8:37:57 AM (15 years ago)
Author:
treat@kde.org
Comment:

Make this more explicit.

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v21 v22  
    3939== Updating ==
    4040
    41 If you're new to git, this command pulls updates from the repository that you previously cloned:
     41If you are tracking the svn repository, this command will fetch information about new commits from svn, reset your local branch to match svn exactly, and then apply your local commits on top:
    4242
    4343{{{
    44    git pull
     44   git svn rebase
    4545}}}
    4646
    47 If you are also tracking the svn repository, this will update the svn-based {{{trunk}}} branch in git:
     47If you are tracking the svn repository, this command will fetch information about new commits from svn:
    4848
    4949{{{
     
    5151}}}
    5252
    53 If 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:
    54 
    55 {{{
    56    git svn rebase
    57 }}}
    5853
    5954== WebKit Script support for Git ==