Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.41 KB

File metadata and controls

48 lines (36 loc) · 1.41 KB

Contributing to SIV-Source-Code-Project

Thank you for considering contributing to SIV-Source-Code-Project! Your contributions are invaluable in making this project better. Here are a few guidelines to follow:

Getting Started

  1. Fork the repository on GitHub.
  2. Clone your fork to your local machine:
    git clone https://github.com/YOUR-USERNAME/SIV-Source-Code-Project.git
  3. Create a new branch for your changes:
    git checkout -b your-branch-name

Making Changes

  1. Install dependencies:
    npm install
  2. Make your changes. Ensure your code follows the existing style and conventions.
  3. Test your changes thoroughly.

Commiting Your Changes

  1. Commit your changes:
    git add .
    git commit -m "Brief description of your changes"
  2. Push to your fork:
    git push origin your-branch-name

Submitting Your Changes

  1. Create a pull request from your branch to main in the original repository.
  2. Ensure your pull request description clearly describes the changes and why they are necessary.
  3. Wait for review. Changes may be requested before your pull request is merged.

Code of Conduct

Please follow our Code of Conduct in all your interactions with the project.

Thank you for contributing!