Changes between Version 42 and Version 43 of UpdatingBugzilla
- Timestamp:
- Feb 9, 2017, 4:06:58 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UpdatingBugzilla
v42 v43 58 58 == Update == 59 59 60 * Update bzr branches (if needed).60 * Update git-svn of `Websites`bugs.webkit.org` in svn. 61 61 {{{ 62 (cd bzr/bugzilla-trunk && bzr update) 63 (cd bzr/bugzilla-3.2 && bzr update) 64 (cd bzr/bugzilla-3.4 && bzr update) 65 (cd bzr/bugzilla-3.6 && bzr update) 66 (cd bzr/bugzilla-4.0 && bzr update) 67 (cd bzr/bugzilla-4.2 && bzr update) 62 cd bugzilla.git 63 git checkout master 64 git svn rebase) 68 65 }}} 69 66 70 * Update git mirror of BugsSite in svn. 71 {{{ 72 (cd BugsSite.git && git svn rebase) 73 }}} 74 75 * Update the merge repository. 67 * Pull updates from the upstream repository. 76 68 {{{ 77 69 cd bugzilla.git 78 git fetch BugsSite 79 git bzr fetch bugzilla-trunk 80 git bzr fetch bugzilla-3.2-branch 81 git bzr fetch bugzilla-3.4-branch 82 git bzr fetch bugzilla-3.6-branch 83 git bzr fetch bugzilla-4.0-branch 84 git bzr fetch bugzilla-4.2-branch 70 git fetch upstream/master 71 git fetch --tags upstream 85 72 }}} 86 73