2020-08-21 01:39:47 +00:00
|
|
|
### Contributing
|
2014-10-02 00:55:02 +00:00
|
|
|
|
|
|
|
Thank you for your interest in `loopback-connector-mysql`, an open source project
|
|
|
|
administered by StrongLoop.
|
|
|
|
|
|
|
|
Contributing to `loopback-connector-mysql` is easy. In a few simple steps:
|
|
|
|
|
|
|
|
* Ensure that your effort is aligned with the project's roadmap by
|
|
|
|
talking to the maintainers, especially if you are going to spend a
|
|
|
|
lot of time on it.
|
|
|
|
|
|
|
|
* Make something better or fix a bug.
|
|
|
|
|
|
|
|
* Adhere to code style outlined in the [Google C++ Style Guide][] and
|
|
|
|
[Google Javascript Style Guide][].
|
|
|
|
|
2021-07-08 01:39:50 +00:00
|
|
|
* Sign the [Developer Certificate of Origin](#developer-certificate-of-origin)
|
2014-10-02 00:55:02 +00:00
|
|
|
|
|
|
|
* Submit a pull request through Github.
|
|
|
|
|
|
|
|
|
2020-08-21 01:39:47 +00:00
|
|
|
### Developer Certificate of Origin
|
2014-10-02 00:55:02 +00:00
|
|
|
|
2020-08-21 01:39:47 +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-10-02 00:55:02 +00:00
|
|
|
|
2020-08-21 01:39:47 +00:00
|
|
|
**Example**
|
2014-10-02 00:55:02 +00:00
|
|
|
|
2020-08-21 01:39:47 +00:00
|
|
|
```
|
|
|
|
git commit -s -m "feat: my commit message"
|
2014-10-02 00:55:02 +00:00
|
|
|
```
|
|
|
|
|
2016-07-14 00:33:00 +00:00
|
|
|
[Google C++ Style Guide]: https://google.github.io/styleguide/cppguide.html
|
|
|
|
[Google Javascript Style Guide]: https://google.github.io/styleguide/javascriptguide.xml
|