| OLD | NEW |
| 1 # Contributing | 1 # Contributing |
| 2 | 2 |
| 3 Want to contribute to Polymer? Great! | 3 Want to contribute to Polymer? Great! |
| 4 | 4 |
| 5 We are more than happy to accept external contributions to the project in the fo
rm of [feedback](https://groups.google.com/forum/?fromgroups=#!forum/polymer-dev
), [bug reports](../../issues), and pull requests. | 5 We are more than happy to accept external contributions to the project in the fo
rm of [feedback](https://groups.google.com/forum/?fromgroups=#!forum/polymer-dev
), [bug reports](../../issues), and pull requests. |
| 6 | 6 |
| 7 ## Contributor License Agreement | 7 ## Contributor License Agreement |
| 8 | 8 |
| 9 Before we can accept patches, there's a quick web form you need to fill out. | 9 Before we can accept patches, there's a quick web form you need to fill out. |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 That will pull in changes from your forked repo, the main (upstream) repo, and m
erge the two. Then it's just a matter of running `git pu` before a change and pu
shing to your repo: | 65 That will pull in changes from your forked repo, the main (upstream) repo, and m
erge the two. Then it's just a matter of running `git pu` before a change and pu
shing to your repo: |
| 66 | 66 |
| 67 git checkout master | 67 git checkout master |
| 68 git pu | 68 git pu |
| 69 # make change | 69 # make change |
| 70 git commit -a -m 'Awesome things.' | 70 git commit -a -m 'Awesome things.' |
| 71 git push | 71 git push |
| 72 | 72 |
| 73 Lastly, don't forget to submit the pull request. | 73 Lastly, don't forget to submit the pull request. |
| OLD | NEW |