Utilitaire bash pour le calcule du prochain numéro de version d'un dépôt git.
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-28 10:18:17 +02:00
git-next-version.sh feat: change le numéro de version pas défaut 2026-08-28 10:18:17 +02:00
git-next-version_completion.sh chore: import du projet workflow-inc-release-hotfix, et ajoute la completion bash 2026-07-29 21:43:52 +02:00
readme.md chore: import du projet workflow-inc-release-hotfix, et ajoute la completion bash 2026-07-29 21:43:52 +02:00

Git-next-version

Utilitaire bash pour le calcule du prochain numéro de version d'un dépôt git.

Usage:

  • Prochaine release (XX.YY)
git-next-version release
  • Prochain hotfix (XX.YY.ZZ)
git-next-version hotfix
  • Hotfix sur une version précise
git-next-version hotfix [XX.YY]   #

Exemples:

git-next-version release          # 1.01 → 1.02
git-next-version hotfix           # 1.02 → 1.02.01
git-next-version hotfix 1.01      # Hotfix sur 1.01 → 1.01.01 ou 1.01.02...