Skip to content
Snippets Groups Projects
Select Git revision
  • 993d1d2642c6d17b9fc3880fa196c81622ab33ef
  • master default protected
  • v1.23.2
  • v1.23.1
  • v1.23.0
  • v1.22.0
  • v1.21.1
  • v1.21.0
  • v1.20.3
  • v1.20.2
  • v1.20.1
  • v1.20.0
  • v1.19.4
  • v1.19.3
  • v1.19.2
  • v1.19.1
  • v1.19.0
  • v1.18.2
  • v1.18.1
  • v1.18.0
  • v1.17.0
  • v1.16.1
22 results

CONTRIBUTING.md

Blame
  • After you've reviewed these contribution guidelines, you'll be all set to contribute to this project.

    Contributing to schukai GmbH Projects

    Code of Conduct

    Be a human, not an asshole. Common sense and basic human decency apply.

    Getting Started

    Setting up the Project

    1. Fork the project on GitLab.
    2. Clone your fork locally. Replace [your-username] with your GitLab username and [project-name] with the actual project name:
      git clone $(git config --get remote.origin.url)
    3. Add the upstream repository. Replace [original-username] and [project-name] with the original repository's username and project name:
      git remote add upstream https://gitlab.schukai.com/[original-username]/[project-name].git

    Making Changes

    1. Create a new branch:
      git checkout -b new-feature-branch
    2. Make your changes.
    3. Commit your changes:
      git commit -m "Description of change"

    Submitting a Merge Request

    1. Push your changes to your fork:
      git push origin new-feature-branch
    2. Navigate to the original project repository on gitlab.schukai.com.
    3. Open a Merge Request and provide a clear description of the changes.

    Coding Guidelines

    • Follow the coding style used in the project.
    • Write unit tests for new features.
    • Ensure that all tests pass before submitting a Merge Request.

    Reporting Issues

    If you find an issue, please create a new issue on gitlab.schukai.com.

    Additional Resources

    Thank you for your contribution!