You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you would like to contribute code you can do so through GitHub by forking the repository and sending a pull request (on a branch other than master or gh-pages).
4
+
5
+
When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible.
6
+
7
+
## License
8
+
9
+
By contributing your code, you agree to license your contribution under the terms of the MIT : https://github.com/ReKotlin/rekotlin-router/blob/master/LICENSE.md
A declarative router for [ReKotlin](https://github.com/GeoThings/ReKotlin). Allows developers to declare routes in a similar manner as URLs are used on the web.
4
6
@@ -195,7 +197,27 @@ For general usage questions please use the [mailing list][list] or [StackOverflo
195
197
196
198
# Contributing
197
199
198
-
There's still a lot of work to do here! We would love to see you involved! You can find all the details on how to get started in the [Contributing Guide](/CONTRIBUTING.md).
200
+
There's still a lot of work to do here! We would love to see you involved!
201
+
202
+
### Submitting patches
203
+
204
+
The best way to submit a patch is to [fork the project on github](https://help.github.com/articles/fork-a-repo/) then send us a
205
+
[pull request](https://help.github.com/articles/creating-a-pull-request/) via [github](https://github.com).
206
+
207
+
If you create your own fork, it might help to enable rebase by default
208
+
when you pull by executing
209
+
```bash
210
+
git config --global pull.rebase true
211
+
```
212
+
This will avoid your local repo having too many merge commits
213
+
which will help keep your pull request simple and easy to apply.
214
+
215
+
Before submitting the pull request, make sure all existing tests are passing, and add the new test if it is required.
216
+
217
+
### New functionality
218
+
If you want to add new functionality, please file a new proposal issue first to make sure that it is not in progress already. If you have any questions, feel free to create a question issue.
219
+
220
+
You can find all the details on how to get started in the [Contributing Guide](/CONTRIBUTING.md).
0 commit comments