Select Git revision
CONTRIBUTING.md

Volker Schukai authored
After you've reviewed these contribution guidelines, you'll be all set to
contribute to this project.
CONTRIBUTING.md 1.61 KiB
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
- Fork the project on GitLab.
- 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)
- 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
- Create a new branch:
git checkout -b new-feature-branch
- Make your changes.
- Commit your changes:
git commit -m "Description of change"
Submitting a Merge Request
- Push your changes to your fork:
git push origin new-feature-branch
- Navigate to the original project repository on
gitlab.schukai.com
. - 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!