Skip to content

Contributing to the Repository

Raydo Matthee edited this page Jun 16, 2024 · 2 revisions

Contributing to the Repository

This section explains how contributors can add value to the project.

Forking the Repository

  1. Go to the repository page: https://github.com/Skunkworks-Lab-Services/noopener-noreferrer-demo.
  2. Click on the "Fork" button to create a copy of the repository in your GitHub account.
Tip: Make sure to keep your forked repository up to date with the original repository.

Making Changes

  1. Clone your forked repository:
<syntaxhighlight lang="bash"> git clone https://github.com/your-username/noopener-noreferrer-demo.git cd noopener-noreferrer-demo </syntaxhighlight>
  1. Create a new branch for your changes:
<syntaxhighlight lang="bash"> git checkout -b feature-branch </syntaxhighlight>
  1. Make your changes and commit them:
<syntaxhighlight lang="bash"> git add . git commit -m "Description of your changes" </syntaxhighlight>
  1. Push your changes to your forked repository:
<syntaxhighlight lang="bash"> git push origin feature-branch </syntaxhighlight>
  1. Open a Pull Request
Note: Follow the repository's contribution guidelines.