Chaque branche de release peut éventuellement correspondre à un sprint
# Initialiser Git Flow
git flow init -d
# Lister / commencer / finir une feature
git flow feature
git flow feature start <nom-feature> # us-12-list-users
git flow feature finish <nom-feature>
# Lister / commencer / finir une release
git flow release
git flow release start <version> # 0.1.0
git flow release finish <version>
# Lister / commencer / finir un hotfix
git flow hotfix
git flow hotfix start <nom-hotfix> # assets
git flow hotfix finish <nom-hotfix>
Avant la fermeture et le merge sur develop