Skip to content

Latest commit

 

History

History
38 lines (23 loc) · 1.12 KB

File metadata and controls

38 lines (23 loc) · 1.12 KB

Contributing Guide

Please refer to the detailed Contribution Guide in the WasmEdge/docs repo.

Commit Messages

In short, all commit messages should follow the standards:

  1. Conventional Commit
  2. Developer Certificate of Origin (DCO)

You can sign-off your commit with Git -s option, or by appending the sign-off text to your commit message. The sign-off must match the Git user and email associated with the commit.

A valid commit should look like this:

<type>: <short description of the change>

<optional detailed description>

Signed-off-by: Your Name <your.email@example.com>

See @commitlint/@config-conventional for allowed <type> values.

Example

docs: updates Contribution Guide

Signed-off-by: Alice Chen <alice.chen@example.com>