Changes between Version 35 and Version 36 of UpdatingBugzilla
- Timestamp:
- Feb 9, 2017, 3:35:13 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UpdatingBugzilla
v35 v36 22 22 git svn init -T trunk/Websites/bugs.webkit.org http://svn.webkit.org/repository/webkit 23 23 git svn fetch 24 cd ..25 24 }}} 26 25 27 26 * Import the upstream Bugzilla git repository. 28 27 {{{ 29 cd bugzilla.git30 28 git remote add -f upstream https://github.com/bugzilla/bugzilla.git 31 29 }}} 32 30 33 * Import the Bugzilla branches from bzr:31 * Create a local git branch to track the `upstream/master` branch. 34 32 {{{ 35 git bzr add bugzilla-trunk ../bzr/bugzilla-trunk 36 git bzr add bugzilla-3.2-branch ../bzr/bugzilla-3.2 37 git bzr add bugzilla-3.4-branch ../bzr/bugzilla-3.4 38 git bzr add bugzilla-3.6-branch ../bzr/bugzilla-3.6 39 git bzr add bugzilla-4.0-branch ../bzr/bugzilla-4.0 40 git bzr add bugzilla-4.2-branch ../bzr/bugzilla-4.2 33 git branch --track upstream remotes/upstream/master 41 34 }}} 42 NOTE: If you get an error about too many authors while importing, see [https://bugs.launchpad.net/bzr-fastimport/+bug/496677 Bug 496677] and [http://trac.macports.org/ticket/26954 MacPorts ticket #26954].43 35 44 36 * Create a .git/info/grafts file to provide artificial merge points between the two remote repositories. … … 46 38 # BugsSite 3.2.3 merge has parents of BugsSite r45519 and bzr tag Bugzilla-3.2.3 47 39 4b974c2db64b5e85e72498b0c43100e2ea380a48 355650f88422025d80d5b5ca7f908d653936556e 780da003de2a006fefa6310f073e3c6be0281a6d 48 }}}49 50 * Create a local git branch to track the BugsSite master branch.51 {{{52 git branch --track master remotes/BugsSite/master53 40 }}} 54 41