@@ -224,30 +224,39 @@ To run the E2E test suite:
224224
225225To create and submit a change:
226226
227- 1. Create a new branch off the master for your changes:
227+ 1. Please sign our Contributor License Agreement (CLA) before sending pull requests. For any code changes to be
228+ accepted, the CLA must be signed. It's a quick process, we promise!
229+
230+ For individuals we have a [simple click-through form](http://code.google.com/legal/individual-cla-v1.0.html). For
231+ corporations we'll need you to
232+ [print, sign and one of scan+email, fax or mail the form](http://code.google.com/legal/corporate-cla-v1.0.html).
233+
234+
235+ 2. Create a new branch off the master for your changes:
228236
229237 git branch my-fix-branch
230238
231- 2 . Check out the branch:
239+ 3 . Check out the branch:
232240
233241 git checkout my-fix-branch
234242
235- 3 . Create your patch, make sure to have plenty of tests (that pass).
243+ 4 . Create your patch, make sure to have plenty of tests (that pass).
236244
237- 4 . Commit your changes and create a descriptive commit message (the commit message is used to generate release notes,
245+ 5 . Commit your changes and create a descriptive commit message (the commit message is used to generate release notes,
238246 please check out our
239247 [commit message conventions](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#)
240248 and our commit message presubmit hook `validate-commit-msg.js`):
241249
242250 git commit -a
243251
244- 5 . Push your branch to Github:
252+ 6 . Push your branch to Github:
245253
246254 git push origin my-fix-branch
247255
248- 6. In Github, send a pull request to `angular:master`.
256+ 7. In Github, send a pull request to `angular:master`.
257+
249258
250- 7 . When the patch is reviewed and merged, delete your branch and pull yours — and other — changes
259+ 8 . When the patch is reviewed and merged, delete your branch and pull yours — and other — changes
251260from the main (upstream) repository:
252261
253262 1. To delete the branch in Github, run:
0 commit comments