Installation and First Workflow
Installation and First Workflow
Install Reflow in an isolated environment and preview a local tag-conversion plan against an explicit target.
reflowCategory
Quick Command
reflow --dry-run -C /path/to/project tags convert localInstall from the Private GitLab Registry
Reviewed releases are published as private Python packages in the project's
GitLab PyPI registry. Ask a maintainer for the GitLab project ID and a deploy
token limited to read_package_registry.python -m venv venv
# Activate the environment, then install one reviewed package version.
python -m pip install --index-url "https://<deploy-user>:<deploy-token>@gitlab.com/api/v4/projects/<project-id>/packages/pypi/simple" "git-reflow==1.0.2"
reflow --version
This is a private registry, not public PyPI. Never commit a token or a credential-bearing index URL. The source-checkout method below remains valid when private-registry access is unavailable.
Install from a Reviewed Source Checkout
python -m venv venv
# Activate with the command for your shell:
# Windows PowerShell: .\venv\Scripts\Activate.ps1
# POSIX shell: source venv/bin/activate
python -m pip install .
reflow --versionFirst Local Workflow
reflow -C /path/to/project init
git -C /path/to/project tag --list
reflow --dry-run -C /path/to/project tags convert local --to semver