Changes between Version 52 and Version 53 of UpdatingBugzilla
- Timestamp:
- Feb 10, 2017, 8:14:50 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UpdatingBugzilla
v52 v53 5 5 This page describes a process to update the Bugzilla instance running on [https://bugs.webkit.org/ bugs.webkit.org]. 6 6 7 == Setup from Scratch == 7 == Setup from Scratch == #setup-from-scratch 8 8 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.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-from-git-svn-repo Setup from git-svn Repository] section. 10 10 11 11 * 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. … … 55 55 git push --tags origin 56 56 }}} 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. 58 58 59 == Setup from git-svn Repository == #setup- git-svn-repo59 == Setup from git-svn Repository == #setup-from-git-svn-repo 60 60 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. 61 Pull 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. 62 80 63 81 == Update ==