Changes between Version 12 and Version 13 of UsingGitWithWebKit
- Timestamp:
- Dec 13, 2007, 7:19:21 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v12 v13 26 26 }}} 27 27 28 If you'd also like to track the svn repository :28 If 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): 29 29 30 30 {{{ … … 36 36 == Updating == 37 37 38 I n caseyou're new to git, this command pulls updates from the repository that you previously cloned:38 If you're new to git, this command pulls updates from the repository that you previously cloned: 39 39 40 40 {{{ … … 42 42 }}} 43 43 44 If you are also tracking the svn repository, this will update the {{{trunk}}} branch in git:44 If you are also tracking the svn repository, this will update the svn-based {{{trunk}}} branch in git: 45 45 46 46 {{{ 47 47 git svn fetch 48 48 }}} 49 49 50 If the current branch is based on the svn repository, this command will pull in commits from svn and rebase local c hanges on top of them:50 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: 51 51 52 52 {{{