Changes between Version 4 and Version 5 of UpdatingBugzilla


Ignore:
Timestamp:
Aug 1, 2009 2:55:08 PM (15 years ago)
Author:
ddkilzer@apple.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UpdatingBugzilla

    v4 v5  
    2121 * Import BugsSite from the WebKit repository into a local git repository.
    2222{{{
    23     mkdir BugsSite.git
    24     cd BugsSite.git
     23    mkdir bugssite.git
     24    cd bugssite.git
    2525    git svn init -T trunk/BugsSite http://svn.webkit.org/repository/webkit
    2626    git svn fetch
     
    3131    mkdir update.git
    3232    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
    3436    # TODO: update .git/info/grafts to create artificial merge points
    3537}}}
     38
     39* Create a local git branch.
     40{{{
     41    git checkout -b master remotes/origin-bugssite/master
     42}}}