Changes between Version 2 and Version 3 of UpdatingBugzilla
- Timestamp:
- Jul 31, 2009, 4:27:21 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UpdatingBugzilla
v2 v3 7 7 == Setup == 8 8 9 * Import original Bugzilla sources from CVS into a local git repository.9 * Check out Bugzilla sources from CVS (for reference). 10 10 {{{ 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 12 18 git cvsimport -d ":pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot" -C bugzilla.git -k mozilla/webtools/bugzilla 13 19 }}} … … 21 27 }}} 22 28 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 }}}