Changes between Version 52 and Version 53 of UpdatingBugzilla


Ignore:
Timestamp:
Feb 10, 2017 8:14:50 PM (7 years ago)
Author:
ddkilzer@apple.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UpdatingBugzilla

    v52 v53  
    55This page describes a process to update the Bugzilla instance running on [https://bugs.webkit.org/ bugs.webkit.org].
    66
    7 == Setup from Scratch ==
     7== Setup from Scratch == #setup-from-scratch
    88
    9 This section describes how to set up a merge environment from scratch.  If you already have a git-svn repo for `Websites/bugs.webkit.org`, you can skip to the [#setup-git-svn-repo Setup from git-svn Repository] section.
     9This section describes how to set up a merge environment from scratch.  If you already have a git-svn repo for `Websites/bugs.webkit.org`, you can skip to the [#setup-from-git-svn-repo Setup from git-svn Repository] section.
    1010
    1111 * Subscribe to the [http://bugzilla.org/cgi-bin/mj_wwwusr?func=lists-long-full&extra=announce announce@bugzilla.org mailing list] to receive email for security updates and new releases.
     
    5555    git push --tags origin
    5656}}}
    57   For now this is internal to Apple, but we may expose it later on git.webkit.org.
     57  NOTE: For now this is internal to Apple, but we may expose it later on git.webkit.org.
    5858
    59 == Setup from git-svn Repository == #setup-git-svn-repo
     59== Setup from git-svn Repository == #setup-from-git-svn-repo
    6060
    61 TBD.  The idea here is to pull the repo from a central git server, then add remotes for the git-svn and the upstream repositories.
     61Pull the repo from a central git server and set it up to do a merge.  This should be faster than the [#setup-from-scratch Setup from Scratch] section.
     62
     63 * Clone the git repository.
     64{{{
     65    git clone git://git.webkit.org/bugzilla.git bugzilla.git
     66}}}
     67  NOTE: For now this is internal to Apple, but we may expose it later on git.webkit.org.
     68
     69 * Change directories into the git working directory.
     70{{{
     71    cd bugzilla.git
     72}}}
     73
     74 * Set up git-svn remote:
     75{{{
     76    git svn init -T trunk/Websites/bugs.webkit.org http://svn.webkit.org/repository/webkit
     77}}}
     78
     79 * TBD.
    6280
    6381== Update ==