Genio Hub provides a modern Version Control System (VCS) that brings the familiar GenioSVN experience into a Git-based environment. The goal is to combine the simplicity and collaboration features of GenioSVN with the flexibility, performance, and ecosystem support of Git.
With this system, teams can manage the evolution of their models in a structured way, collaborate on parallel developments, and maintain a clean history of changes. Compared to GenioSVN, the new approach allows more flexible workflows, smoother integration with external tools, and better alignment with DevOps practices.
To configure version control in Genio Hub, the model owner must access the Version Control tab. The setup process requires a valid connection to a Git repository, which should be validated before proceeding.
See here how to set up a model with Version Control on Genio Hub.
Once the setup is completed: - The main branch is created automatically.
This ensures that every project starts with a stable reference branch, which can then be extended into other collaboration workflows.
The Version Control tool supports multiple branching strategies, giving teams the flexibility to choose how they want to collaborate. From the Models page, users can navigate through available branches and switch between different workflows.
There are two main workflows:
This lightweight workflow is ideal for continuous delivery. All changes are integrated directly into the main
branch, keeping the process simple and efficient.
Advantages:
A more structured workflow designed for projects with distinct release cycles. Developers work on isolated branches and use external tools such as GitLab for code reviews before merging into main branches.
Advantages:
By allowing both approaches, Genio Hub adapts to different team sizes and development strategies.
The Version control includes a set of familiar operations, most of which map directly to traditional Git or SVN actions:
These operations give developers a clear and consistent way to track and manage their work, whether they are following a lightweight or structured workflow.
Conflicts are handled automatically whenever possible. The system prioritizes the source branch version, merging changes silently when there is no ambiguity.
For manual code conflicts, Genio Hub applies Git-style markers if the merge cannot be resolved automatically. Developers can then edit the conflicting sections, resolve them, and mark the conflict as complete.
This approach minimizes interruptions while still giving teams full control over tricky merges.
For teams that need more structure, Genio Hub also supports a dev & main branching model:
main
branch acts as the official release history.dev
branch is used as an integration branch for new features.dev
.dev
into main
.Advantages: - Maintains a clean release history.
dev
) for testing features together.