Skip to content

Getting Started

Set up a workflow to contribute firmware changes and submit Merge Requests to the kurikintons project.


Prerequisites

Complete the Developer Guide setup before contributing.


Workflow Overview

  1. Create a worktree from main or a feature branch
  2. Build and verify the firmware
  3. Commit with conventional commit format
  4. Push and open a Merge Request on GitLab

See Build & Upload for the full step-by-step workflow.


Check Available Versions

List all released versions:

git tag --list | sort -V

To work on a specific version, create a worktree from its tag:

git worktree add ../kurikintons-v2.6.0 2.6.0
cd ../kurikintons-v2.6.0

Next Steps