|
1 | | -# Contributing to Paho |
2 | | - |
3 | | -Thanks for your interest in this project! |
4 | | - |
5 | | -You can contribute bugfixes and new features by sending pull requests through GitHub. |
6 | | - |
7 | | -## Legal |
8 | | - |
9 | | -In order for your contribution to be accepted, it must comply with the Eclipse Foundation IP policy. |
10 | | - |
11 | | -Please read the [Eclipse Foundation policy on accepting contributions via Git](http://wiki.eclipse.org/Development_Resources/Contributing_via_Git). |
12 | | - |
13 | | -1. Sign the [Eclipse ECA](http://www.eclipse.org/legal/ECA.php) |
14 | | - 1. Register for an Eclipse Foundation User ID. You can register [here](https://dev.eclipse.org/site_login/createaccount.php). |
15 | | - 2. Log into the [Eclipse projects forge](https://www.eclipse.org/contribute/cla), and click on 'Eclipse Contributor Agreement'. |
16 | | -2. Go to your [account settings](https://dev.eclipse.org/site_login/myaccount.php#open_tab_accountsettings) and add your GitHub username to your account. |
17 | | -3. Make sure that you _sign-off_ your Git commits in the following format: |
18 | | - ``` Signed-off-by: Alex Smith <alexsmith@nowhere.com> ``` This is usually at the bottom of the commit message. You can automate this by adding the '-s' flag when you make the commits. e.g. ```git commit -s -m "Adding a cool feature"``` |
19 | | -4. Ensure that the email address that you make your commits with is the same one you used to sign up to the Eclipse Foundation website with. |
20 | | - |
21 | | -## Contributing a change |
22 | | - |
23 | | -1. [Fork the repository on GitHub](https://github.com/eclipse/paho.mqtt.java/fork) |
24 | | -2. Clone the forked repository onto your computer: ``` git clone https://github.com/<your username>/paho.mqtt.java.git ``` |
25 | | -3. Create a new branch from the latest ```develop``` branch with ```git checkout -b YOUR_BRANCH_NAME origin/develop``` |
26 | | -4. Make your changes |
27 | | -5. If developing a new feature, make sure to include JUnit tests. |
28 | | -6. Ensure that all new and existing tests pass. |
29 | | -7. Commit the changes into the branch: ``` git commit -s ``` Make sure that your commit message is meaningful and describes your changes correctly. |
30 | | -8. If you have a lot of commits for the change, squash them into a single / few commits. |
31 | | -9. Push the changes in your branch to your forked repository. |
32 | | -10. Finally, go to [https://github.com/eclipse/paho.mqtt.java](https://github.com/eclipse/paho.mqtt.java) and create a pull request from your "YOUR_BRANCH_NAME" branch to the ```develop``` one to request review and merge of the commits in your pushed branch. |
33 | | - |
34 | | - |
35 | | -What happens next depends on the content of the patch. If it is 100% authored |
36 | | -by the contributor and is less than 1000 lines (and meets the needs of the |
37 | | -project), then it can be pulled into the main repository. If not, more steps |
38 | | -are required. These are detailed in the |
39 | | -[legal process poster](http://www.eclipse.org/legal/EclipseLegalProcessPoster.pdf). |
40 | | - |
41 | | - |
42 | | - |
43 | | -## Developer resources: |
44 | | - |
45 | | - |
46 | | -Information regarding source code management, builds, coding standards, and more. |
47 | | - |
48 | | -- [https://projects.eclipse.org/projects/iot.paho/developer](https://projects.eclipse.org/projects/iot.paho/developer) |
49 | | - |
50 | | -Contact: |
51 | | --------- |
52 | | - |
53 | | -Contact the project developers via the project's development |
54 | | -[mailing list](https://dev.eclipse.org/mailman/listinfo/paho-dev). |
55 | | - |
56 | | -Search for bugs: |
57 | | ----------------- |
58 | | - |
59 | | -This project uses GitHub Issues here: [github.com/eclipse/paho.mqtt.java/issues](https://github.com/eclipse/paho.mqtt.java/issues) to track ongoing development and issues. |
60 | | - |
61 | | -Create a new bug: |
62 | | ------------------ |
63 | | - |
64 | | -Be sure to search for existing bugs before you create another one. Remember that contributions are always welcome! |
65 | | - |
66 | | -- [Create new Paho bug](https://github.com/eclipse/paho.mqtt.java/issues/new) |
| 1 | +# Contributing to Paho |
| 2 | + |
| 3 | +Thanks for your interest in this project! |
| 4 | + |
| 5 | +You can contribute bugfixes and new features by sending pull requests through GitHub. |
| 6 | + |
| 7 | +## Legal |
| 8 | + |
| 9 | +In order for your contribution to be accepted, it must comply with the Eclipse Foundation IP policy. |
| 10 | + |
| 11 | +Please read the [Eclipse Foundation policy on accepting contributions via Git](http://wiki.eclipse.org/Development_Resources/Contributing_via_Git). |
| 12 | + |
| 13 | +1. Sign the [Eclipse ECA](http://www.eclipse.org/legal/ECA.php) |
| 14 | + 1. Register for an Eclipse Foundation User ID. You can register [here](https://dev.eclipse.org/site_login/createaccount.php). |
| 15 | + 2. Log into the [Eclipse projects forge](https://www.eclipse.org/contribute/cla), and click on 'Eclipse Contributor Agreement'. |
| 16 | +2. Go to your [account settings](https://dev.eclipse.org/site_login/myaccount.php#open_tab_accountsettings) and add your GitHub username to your account. |
| 17 | +3. Make sure that you _sign-off_ your Git commits in the following format: |
| 18 | + ``` Signed-off-by: Alex Smith <alexsmith@nowhere.com> ``` This is usually at the bottom of the commit message. You can automate this by adding the '-s' flag when you make the commits. e.g. ```git commit -s -m "Adding a cool feature"``` |
| 19 | +4. Ensure that the email address that you make your commits with is the same one you used to sign up to the Eclipse Foundation website with. |
| 20 | + |
| 21 | +## Contributing a change |
| 22 | + |
| 23 | +1. [Fork the repository on GitHub](https://github.com/eclipse/paho.mqtt.java/fork) |
| 24 | +2. Clone the forked repository onto your computer: ``` git clone https://github.com/<your username>/paho.mqtt.java.git ``` |
| 25 | +3. Create a new branch from the latest ```develop``` branch with ```git checkout -b YOUR_BRANCH_NAME origin/develop``` |
| 26 | +4. Make your changes |
| 27 | +5. If developing a new feature, make sure to include JUnit tests. |
| 28 | +6. Ensure that all new and existing tests pass. |
| 29 | +7. Commit the changes into the branch: ``` git commit -s ``` Make sure that your commit message is meaningful and describes your changes correctly. |
| 30 | +8. If you have a lot of commits for the change, squash them into a single / few commits. |
| 31 | +9. Push the changes in your branch to your forked repository. |
| 32 | +10. Finally, go to [https://github.com/eclipse/paho.mqtt.java](https://github.com/eclipse/paho.mqtt.java) and create a pull request from your "YOUR_BRANCH_NAME" branch to the ```develop``` one to request review and merge of the commits in your pushed branch. |
| 33 | + |
| 34 | + |
| 35 | +What happens next depends on the content of the patch. If it is 100% authored |
| 36 | +by the contributor and is less than 1000 lines (and meets the needs of the |
| 37 | +project), then it can be pulled into the main repository. If not, more steps |
| 38 | +are required. These are detailed in the |
| 39 | +[legal process poster](http://www.eclipse.org/legal/EclipseLegalProcessPoster.pdf). |
| 40 | + |
| 41 | + |
| 42 | + |
| 43 | +## Developer resources: |
| 44 | + |
| 45 | + |
| 46 | +Information regarding source code management, builds, coding standards, and more. |
| 47 | + |
| 48 | +- [https://projects.eclipse.org/projects/iot.paho/developer](https://projects.eclipse.org/projects/iot.paho/developer) |
| 49 | + |
| 50 | +Contact: |
| 51 | +-------- |
| 52 | + |
| 53 | +Contact the project developers via the project's development |
| 54 | +[mailing list](https://dev.eclipse.org/mailman/listinfo/paho-dev). |
| 55 | + |
| 56 | +Search for bugs: |
| 57 | +---------------- |
| 58 | + |
| 59 | +This project uses GitHub Issues here: [github.com/eclipse/paho.mqtt.java/issues](https://github.com/eclipse/paho.mqtt.java/issues) to track ongoing development and issues. |
| 60 | + |
| 61 | +Create a new bug: |
| 62 | +----------------- |
| 63 | + |
| 64 | +Be sure to search for existing bugs before you create another one. Remember that contributions are always welcome! |
| 65 | + |
| 66 | +- [Create new Paho bug](https://github.com/eclipse/paho.mqtt.java/issues/new) |
| 67 | +======= |
| 68 | +# Contributing to Paho |
| 69 | + |
| 70 | +Thanks for your interest in this project! |
| 71 | + |
| 72 | +You can contribute bugfixes and new features by sending pull requests through GitHub. |
| 73 | + |
| 74 | +## Legal |
| 75 | + |
| 76 | +In order for your contribution to be accepted, it must comply with the Eclipse Foundation IP policy. |
| 77 | + |
| 78 | +Please read the [Eclipse Foundation policy on accepting contributions via Git](http://wiki.eclipse.org/Development_Resources/Contributing_via_Git). |
| 79 | + |
| 80 | +1. Sign the [Eclipse ECA](http://www.eclipse.org/legal/ECA.php) |
| 81 | + 1. Register for an Eclipse Foundation User ID. You can register [here](https://dev.eclipse.org/site_login/createaccount.php). |
| 82 | + 2. Log into the [Eclipse projects forge](https://www.eclipse.org/contribute/cla), and click on 'Eclipse Contributor Agreement'. |
| 83 | +2. Go to your [account settings](https://dev.eclipse.org/site_login/myaccount.php#open_tab_accountsettings) and add your GitHub username to your account. |
| 84 | +3. Make sure that you _sign-off_ your Git commits in the following format: |
| 85 | + ``` Signed-off-by: Alex Smith <alexsmith@nowhere.com> ``` This is usually at the bottom of the commit message. You can automate this by adding the '-s' flag when you make the commits. e.g. ```git commit -s -m "Adding a cool feature"``` |
| 86 | +4. Ensure that the email address that you make your commits with is the same one you used to sign up to the Eclipse Foundation website with. |
| 87 | + |
| 88 | +## Contributing a change |
| 89 | + |
| 90 | +1. [Fork the repository on GitHub](https://github.com/eclipse/paho.mqtt.java/fork) |
| 91 | +2. Clone the forked repository onto your computer: ``` git clone https://github.com/<your username>/paho.mqtt.java.git ``` |
| 92 | +3. Create a new branch from the latest ```develop``` branch with ```git checkout -b YOUR_BRANCH_NAME origin/develop``` |
| 93 | +4. Make your changes |
| 94 | +5. If developing a new feature, make sure to include JUnit tests. |
| 95 | +6. Ensure that all new and existing tests pass. |
| 96 | +7. Commit the changes into the branch: ``` git commit -s ``` Make sure that your commit message is meaningful and describes your changes correctly. |
| 97 | +8. If you have a lot of commits for the change, squash them into a single / few commits. |
| 98 | +9. Push the changes in your branch to your forked repository. |
| 99 | +10. Finally, go to [https://github.com/eclipse/paho.mqtt.java](https://github.com/eclipse/paho.mqtt.java) and create a pull request from your "YOUR_BRANCH_NAME" branch to the ```develop``` one to request review and merge of the commits in your pushed branch. |
| 100 | + |
| 101 | + |
| 102 | +What happens next depends on the content of the patch. If it is 100% authored |
| 103 | +by the contributor and is less than 1000 lines (and meets the needs of the |
| 104 | +project), then it can be pulled into the main repository. If not, more steps |
| 105 | +are required. These are detailed in the |
| 106 | +[legal process poster](http://www.eclipse.org/legal/EclipseLegalProcessPoster.pdf). |
| 107 | + |
| 108 | + |
| 109 | + |
| 110 | +## Developer resources: |
| 111 | + |
| 112 | + |
| 113 | +Information regarding source code management, builds, coding standards, and more. |
| 114 | + |
| 115 | +- [https://projects.eclipse.org/projects/iot.paho/developer](https://projects.eclipse.org/projects/iot.paho/developer) |
| 116 | + |
| 117 | +Contact: |
| 118 | +-------- |
| 119 | + |
| 120 | +Contact the project developers via the project's development |
| 121 | +[mailing list](https://dev.eclipse.org/mailman/listinfo/paho-dev). |
| 122 | + |
| 123 | +Search for bugs: |
| 124 | +---------------- |
| 125 | + |
| 126 | +This project uses GitHub Issues here: [github.com/eclipse/paho.mqtt.java/issues](https://github.com/eclipse/paho.mqtt.java/issues) to track ongoing development and issues. |
| 127 | + |
| 128 | +Create a new bug: |
| 129 | +----------------- |
| 130 | + |
| 131 | +Be sure to search for existing bugs before you create another one. Remember that contributions are always welcome! |
| 132 | + |
| 133 | +- [Create new Paho bug](https://github.com/eclipse/paho.mqtt.java/issues/new) |
| 134 | + |
0 commit comments