Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.65 KB

CONTRIBUTING.md

File metadata and controls

44 lines (30 loc) · 1.65 KB

Contributing to Galsenext

Thank you for considering contributing to Galsenext! We welcome contributions from everyone. Here’s how you can get started:

How to Contribute

Reporting Issues

  1. Check Existing Issues: Before reporting a new issue, please check if the problem has already been reported.
  2. Create a New Issue: If you find a new issue, open a new issue on our GitHub Issues page. Provide a clear and descriptive title, and include steps to reproduce the problem.

Submitting Pull Requests

  1. Fork the Repository: Create a personal fork of the repository on GitHub.
  2. Clone Your Fork: Clone your fork to your local machine using:
    git clone https://github.com/your-username/Galsenext.git
    
  3. Create a Branch: Create a new branch for your changes:
git checkout -b your-branch-name
  1. Make Changes: Implement your changes or fixes.
  2. Commit Your Changes: Commit your changes with a descriptive message:
git add .
git commit -m "Description of your changes"
  1. Push Your Changes: Push your changes to your fork:
git push origin your-branch-name
  1. Open a Pull Request: Open a pull request on the Galsenext GitHub repository. Describe your changes and why they are beneficial.

Coding Guidelines

- Follow Code Style: Ensure that your code adheres to our coding style and conventions.
- Write Clear Commit Messages: Use descriptive commit messages to explain the purpose of your changes.
- Add Tests: If applicable, add tests to cover your changes.