Changes between Version 11 and Version 12 of UsingGitWithWebKit
- Timestamp:
- Dec 13, 2007, 7:16:34 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v11 v12 20 20 == Checkout == 21 21 22 To checkout WebKit using git: 23 22 24 {{{ 23 git clone git://git.webkit.org/WebKit.git 25 git clone git://git.webkit.org/WebKit.git WebKit 26 }}} 27 28 If 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 24 34 }}} 25 35 26 36 == Updating == 27 37 28 In case you're new to git, this command pulls updates from the repository you cloned during checkout:38 In case you're new to git, this command pulls updates from the repository that you previously cloned: 29 39 30 40 {{{ 31 41 git pull 42 }}} 43 44 If you are also tracking the svn repository, this will update the {{{trunk}}} branch in git: 45 46 {{{ 47 git svn fetch 48 }}} 49 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: 51 52 {{{ 53 git svn rebase 32 54 }}} 33 55