Changes between Version 2 and Version 3 of UpdatingBugzilla


Ignore:
Timestamp:
Jul 31, 2009 4:27:21 PM (15 years ago)
Author:
ddkilzer@apple.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UpdatingBugzilla

    v2 v3  
    77== Setup ==
    88
    9 * Import original Bugzilla sources from CVS into a local git repository.
     9* Check out Bugzilla sources from CVS (for reference).
    1010{{{
    11     rm -rf ~/.cvsps/\:pserver\:anonymous@cvs-mirror.mozilla.org\:#cvsroot#mozilla#webtools#bugzilla
     11    cvs -d ":pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot" co -d bugzilla.cvs mozilla/webtools/bugzilla
     12}}}
     13
     14* Import original Bugzilla sources from CVS into a local git repository (may take a couple of hours).
     15{{{
     16    rm -f ~/.cvsps/\:pserver\:anonymous@cvs-mirror.mozilla.org\:#cvsroot#mozilla#webtools#bugzilla
     17    mkdir bugzilla.git
    1218    git cvsimport -d ":pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot" -C bugzilla.git -k mozilla/webtools/bugzilla
    1319}}}
     
    2127}}}
    2228
    23 * Create a local git repository to do the merge
     29* Create a local git repository to do the merge.
     30{{{
     31    mkdir update.git
     32    cd update.git
     33    # TODO: clone BugsSite.git and bugzilla.git into local repository
     34    # TODO: update .git/info/grafts to create artificial merge points
     35}}}