From da550ca934499d1b9dac1fee0cb0c8a4ce23d7da Mon Sep 17 00:00:00 2001 From: Mike Thompson Date: Mon, 20 Feb 2023 12:05:00 -0500 Subject: [PATCH 1/2] Initial Contributing doc --- CONTRIBUTING.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..b80fb2251 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,21 @@ +# Contributing +New Contributors are always welcome. + +## Contributor Agreement +Most Contributors are [members](https://www.openhwgroup.org/membership/) of the +OpenHW Group and participate in one or more [Technical Task Groups](https://www.openhwgroup.org/working-groups/). +Membership is strongly encouraged, but not required. Contributors must be +covered by the terms of the [Eclipse Contributor Agreement](https://www.eclipse.org/legal/ECA.php) +(for individuals) **or** the [Eclipse Member Committer and Contributor Agreement](https://www.eclipse.org/legal/committer_process/EclipseMemberCommitterAgreement.pdf) +(for employees of Member companies). The ECA/MCCA provides a legal +framework for a Contributor's technical contributions to the OpenHW Group, +including provisions for grant of copyright license and a Developer +Certificate of Origin on contributions merged into OpenHW Group repositories. + +## The Mechanics +1. [Fork](https://help.github.com/articles/fork-a-repo/) the [cvw](https://github.com/openhwgroup/cvw) repository +2. Clone repository: `git clone https://github.com/[your_github_username]/cvw` +3. Create your feature branch: `git checkout -b .`
Please uniquify your branch name. See the [Git Cheats](https://github.com/openhwgroup/core-v-verif/blob/master/GitCheats.md) for a useful nominclature. +5. Commit your changes: `git commit -m 'Add some feature'` +6. Push feature branch: `git push origin ` +7. Submit a [pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork). From 423d7867052176c964b57a7ed5685904290c14b1 Mon Sep 17 00:00:00 2001 From: Mike Thompson Date: Mon, 20 Feb 2023 12:11:40 -0500 Subject: [PATCH 2/2] Add SPDX header to CONTRIBUTING --- CONTRIBUTING.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b80fb2251..d9919d464 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,6 @@ + # Contributing New Contributors are always welcome.