Gitflow - Definição do Glossário CI/CD
Gitflow é um modelo de branching, introduzido por Vincent Driessen, que usa branches main e develop de vida longa mais branches dedicadas de feature, release e hotfix com regras de merge definidas.
Por que importa
O Gitflow se adequa a releases agendados e versionados, mas adiciona overhead de branches e integração mais lenta, e é por isso que equipes que buscam entrega contínua muitas vezes preferem GitHub flow ou desenvolvimento trunk-based.
Guias relacionados
GitHub Flow - CI/CD Glossary DefinitionGitHub Flow: GitHub flow is a lightweight branching model: branch off `main`, open a pull request, get review…
Feature Branch Workflow - CI/CD Glossary DefinitionFeature Branch Workflow: A feature branch workflow is a branching model where each unit of work is developed…
Release Engineering - CI/CD Glossary DefinitionRelease Engineering: Release engineering is the discipline of making the build, packaging, and release of sof…