Changes between Version 15 and Version 16 of UpdatingBugzilla
- Timestamp:
- Jul 3, 2010, 3:45:08 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UpdatingBugzilla
v15 v16 72 72 == Update == 73 73 74 * Update CVS directory(if needed).74 * Update bzr branches (if needed). 75 75 {{{ 76 cd bugzilla.cvs 77 cvs -q update -d -P -A 76 (cd bzr/bugzilla-trunk && bzr update) 77 (cd bzr/bugzilla-3.2 && bzr update) 78 (cd bzr/bugzilla-3.4 && bzr update) 79 (cd bzr/bugzilla-3.6 && bzr update) 78 80 }}} 79 81 80 * Update Git mirror of BugsSite in svn.82 * Update git mirror of BugsSite in svn. 81 83 {{{ 82 cd bugssite.git 83 git svn rebase 84 }}} 85 86 * Update Git mirror of Bugzilla in CVS. (Removing the cvsps cache file forces git-cvsimport to regenerate it each time.) 87 {{{ 88 rm -f ~/.cvsps/\:pserver\:anonymous@cvs-mirror.mozilla.org\:#cvsroot#mozilla#webtools#bugzilla 89 git cvsimport -d ":pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot" -C bugzilla.git -k mozilla/webtools/bugzilla 84 (cd BugsSite.git && git svn rebase) 90 85 }}} 91 86 92 87 * Update the merge repository. 93 88 {{{ 94 cd update.git 95 git fetch origin-bugssite 96 git fetch origin-bugzilla 97 git checkout master 98 git pull 89 cd bugzilla.git 90 git fetch BugsSite 91 git bzr fetch bugzilla-trunk 92 git bzr fetch bugzilla-3.2-branch 93 git bzr fetch bugzilla-3.4-branch 94 git bzr fetch bugzilla-3.6-branch 99 95 }}} 100 96