Changes between Version 15 and Version 16 of UpdatingBugzilla


Ignore:
Timestamp:
Jul 3, 2010 3:45:08 PM (14 years ago)
Author:
ddkilzer@webkit.org
Comment:

Updated Update section for bzr

Legend:

Unmodified
Added
Removed
Modified
  • UpdatingBugzilla

    v15 v16  
    7272== Update ==
    7373
    74  * Update CVS directory (if needed).
     74 * Update bzr branches (if needed).
    7575{{{
    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)
    7880}}}
    7981
    80  * Update Git mirror of BugsSite in svn.
     82 * Update git mirror of BugsSite in svn.
    8183{{{
    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)
    9085}}}
    9186
    9287 * Update the merge repository.
    9388{{{
    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
    9995}}}
    10096