@@ -224,30 +224,39 @@ To run the E2E test suite:
224
224
225
225
To create and submit a change:
226
226
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:
228
236
229
237
git branch my-fix-branch
230
238
231
- 2 . Check out the branch:
239
+ 3 . Check out the branch:
232
240
233
241
git checkout my-fix-branch
234
242
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).
236
244
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,
238
246
please check out our
239
247
[commit message conventions](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#)
240
248
and our commit message presubmit hook `validate-commit-msg.js`):
241
249
242
250
git commit -a
243
251
244
- 5 . Push your branch to Github:
252
+ 6 . Push your branch to Github:
245
253
246
254
git push origin my-fix-branch
247
255
248
- 6. In Github, send a pull request to `angular:master`.
256
+ 7. In Github, send a pull request to `angular:master`.
257
+
249
258
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
251
260
from the main (upstream) repository:
252
261
253
262
1. To delete the branch in Github, run:
0 commit comments