Jetpack/Integration Process: Difference between revisions

Line 10: Line 10:
  git remote add origin git@github.com:mozilla/addon-sdk.git
  git remote add origin git@github.com:mozilla/addon-sdk.git
  git fetch origin
  git fetch origin
  git checkout -f integration
  git checkout -f firefoxXX #where XX is the current version you're uplifting to


This will give you the latest mozilla-inbound code and update the SDK files to the latest versions from the integration branch, in some cases that might be newer than those already in mozilla-inbound.
This will give you the latest mozilla-inbound code and update the SDK files to the latest versions from the firefoxXX branch, in some cases that might be newer than those already in mozilla-inbound.


== If you have previously done the above ==
== If you have previously done the above ==
Line 19: Line 19:
  hg pull -u
  hg pull -u
  cd addon-sdk/source
  cd addon-sdk/source
  git reset --hard integration # undoes any backouts that happened in hg
  git reset --hard firefoxXX # undoes any backouts that happened in hg, XX is current m-i version number
  git pull origin integration
  git pull origin firefoxXX


Updates the Firefox and SDK files to the latest versions from the integration branch.
Updates the Firefox and SDK files to the latest versions from the integration branch.
Confirmed users
396

edits