2014-05-23 08:31:19 +00:00
|
|
|
### Contributing ###
|
|
|
|
|
2014-10-02 01:06:58 +00:00
|
|
|
Thank you for your interest in `loopback-connector`, an open source project
|
2014-05-23 08:31:19 +00:00
|
|
|
administered by StrongLoop.
|
|
|
|
|
2014-10-02 01:06:58 +00:00
|
|
|
Contributing to `loopback-connector` is easy. In a few simple steps:
|
2014-05-23 08:31:19 +00:00
|
|
|
|
2014-10-02 01:06:58 +00:00
|
|
|
* Ensure that your effort is aligned with the project's roadmap by
|
2014-05-23 08:31:19 +00:00
|
|
|
talking to the maintainers, especially if you are going to spend a
|
2014-10-02 01:06:58 +00:00
|
|
|
lot of time on it.
|
2014-05-23 08:31:19 +00:00
|
|
|
|
|
|
|
* Make something better or fix a bug.
|
|
|
|
|
2014-10-02 01:06:58 +00:00
|
|
|
* Adhere to code style outlined in the [Google C++ Style Guide][] and
|
2014-05-23 08:31:19 +00:00
|
|
|
[Google Javascript Style Guide][].
|
|
|
|
|
2014-12-29 16:27:46 +00:00
|
|
|
* Sign the [Contributor License Agreement](https://cla.strongloop.com/agreements/strongloop/loopback-connector)
|
2014-05-23 08:31:19 +00:00
|
|
|
|
|
|
|
* Submit a pull request through Github.
|
|
|
|
|
2020-08-21 01:36:26 +00:00
|
|
|
### Developer Certificate of Origin
|
2014-05-23 08:31:19 +00:00
|
|
|
|
2020-08-21 01:36:26 +00:00
|
|
|
This project uses [DCO](https://developercertificate.org/). Be sure to sign off
|
|
|
|
your commits using the `-s` flag or adding `Signed-off-By: Name<Email>` in the
|
|
|
|
commit message.
|
2014-05-23 08:31:19 +00:00
|
|
|
|
2020-08-21 01:36:26 +00:00
|
|
|
**Example**
|
2014-05-23 08:31:19 +00:00
|
|
|
|
2020-08-21 01:36:26 +00:00
|
|
|
```
|
|
|
|
git commit -s -m "feat: my commit message"
|
2014-05-23 08:31:19 +00:00
|
|
|
```
|
|
|
|
|
2016-07-14 00:59:10 +00:00
|
|
|
[Google C++ Style Guide]: https://google.github.io/styleguide/cppguide.html
|
|
|
|
[Google Javascript Style Guide]: https://google.github.io/styleguide/javascriptguide.xml
|