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
Copy file name to clipboardexpand all lines: docs/contribute/contribute.md
+26-3
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
sidebar_position: 8
3
3
---
4
4
5
-
# Contributing Steps
5
+
# Code Contribution Steps
6
6
7
7
## Setup Development Environment
8
8
@@ -18,7 +18,7 @@ To build WasmEdge from the source, please refer to: [Build WasmEdge from source]
18
18
19
19
Pull requests are always welcome, even if they only contain minor fixes like typos or a few lines of code. If there will be a significant effort, please document it as an issue and get a discussion going before starting to work on it.
20
20
21
-
Please submit a pull request broken down into small changes bit by bit. A pull request consisting of many features and code changes may take a lot of work to review. It is recommended to submit pull requests incrementally.
21
+
Please submit a pull request broken down into small changes bit by bit. A pull request consisting of many features and code changes may take a lot of work to review. It is recommended that pull requests be submitted incrementally.
22
22
23
23
<!-- prettier-ignore -->
24
24
:::note
@@ -33,7 +33,30 @@ Fork [the WasmEdge repository](https://github.com/WasmEdge/WasmEdge) and clone t
33
33
34
34
Changes should be made on your own fork in a new branch. Pull requests should be rebased on the top of the main branch.
35
35
36
-
The WasmEdge project adopts [DCO](https://www.secondstate.io/articles/dco/) to manage all contributions. Please ensure you add your `sign-off-statement` through the `-s` or `--signoff` flag or the GitHub Web UI before committing the pull request message.
36
+
Licensing is important to open source projects. It provides some assurances that the software will continue to be available based under the terms that the author(s) desired. We require that contributors sign off on commits submitted to our project's repositories. The [Developer Certificate of Origin (DCO)](https://probot.github.io/apps/dco/) is a way to certify that you wrote and have the right to contribute the code you are submitting to the project.
37
+
38
+
You can sign-off by adding the following to your commit messages. Your sign-off must
39
+
match the git user and email associated with the commit.
0 commit comments