Before submitting a new issue, you may find your symptom in past discussions in Issues.
If you cannot find your symptom or , then please share the problem with us by submitting a new issue.
dw have tried to make it as easy as possible to make contributions. This applies to how we handle the legal aspects of contribution. We use the same approach - the DCO1.1.txt that the Linux® Kernel community uses to manage code contributions. We simply ask that when submitting a patch for review, the developer must include a sign-off statement in the commit message. Here is an example Signed-off-by line, which indicates that the submitter accepts the DCO:
Signed-off-by: John Doe <john.doe@example.com>
You can include this automatically when you commit a change to your local git repository using the following command:
git commit -s
- Push
fork
button. - Clone your forked repo (
git clone git@github.com:YOURNAME/dw.git
) - Add your changes (
git add MODIFIED_FILES
) - Commit your changes (
git commit -s -m 'Add some feature'
) - Push to the branch (
git push origin main
) - In
Pull requests
tab, pushNew pull request
button. - Push
Create pull request
button.