Changes between Version 21 and Version 22 of UsingGitWithWebKit
- Timestamp:
- Jun 25, 2009 8:37:57 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v21 v22 39 39 == Updating == 40 40 41 If you 're new to git, this command pulls updates from the repository that you previously cloned:41 If 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: 42 42 43 43 {{{ 44 git pull44 git svn rebase 45 45 }}} 46 46 47 If you are also tracking the svn repository, this will update the svn-based {{{trunk}}} branch in git:47 If you are tracking the svn repository, this command will fetch information about new commits from svn: 48 48 49 49 {{{ … … 51 51 }}} 52 52 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 rebase57 }}}58 53 59 54 == WebKit Script support for Git ==