canmove, Confirmed users
227
edits
|  (→Bugzilla:  Add query for candidates for merge with master) |  (Moved instructions for adding UX branch upstream. Clarification: this is not needed for development.) | ||
| Line 19: | Line 19: | ||
| # QA test | # QA test | ||
| # Pull request once weekly | # Pull request once weekly | ||
| == How to do Development == | == How to do Development == | ||
| Line 107: | Line 82: | ||
| B2G Vidyo Room<br> | B2G Vidyo Room<br> | ||
| Tues @ 1:00pm-2:00pm | Tues @ 1:00pm-2:00pm | ||
| == Previewing UX Branch == | |||
| Instructions for flashing UX branch to your phone. Note that you should '''never merge into or from the UX branch for development'''. You should always branch from master. These instructions are only for getting a local branch that you can flash to your phone. | |||
| Sign into Github, fork http://github.com/mozilla-b2g/gaia (if you haven't already). | |||
| Add my repository as a remote to the local copy of your fork: | |||
|     git remote add gordonbrander https://github.com/gordonbrander/gaia.git | |||
| Create a new local branch and set it up to track the remote branch: | |||
|     git checkout -b ux gordonbrander/ux | |||
| If you need to update your copy of the ux branch with the latest from gordonbrander/ux: | |||
|     git fetch gordonbrander | |||
|     git merge gordonbrander/ux | |||