Changes between Version 4 and Version 5 of UpdatingBugzilla
- Timestamp:
- Aug 1, 2009, 2:55:08 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UpdatingBugzilla
v4 v5 21 21 * Import BugsSite from the WebKit repository into a local git repository. 22 22 {{{ 23 mkdir BugsSite.git24 cd BugsSite.git23 mkdir bugssite.git 24 cd bugssite.git 25 25 git svn init -T trunk/BugsSite http://svn.webkit.org/repository/webkit 26 26 git svn fetch … … 31 31 mkdir update.git 32 32 cd update.git 33 # TODO: clone BugsSite.git and bugzilla.git into local repository 33 git init 34 git remote add -f origin-bugssite ../bugssite.git 35 git remote add -f origin-bugzilla ../bugzilla.git 34 36 # TODO: update .git/info/grafts to create artificial merge points 35 37 }}} 38 39 * Create a local git branch. 40 {{{ 41 git checkout -b master remotes/origin-bugssite/master 42 }}}