gitflow
Gitflow
Install:
code
brew install git-flow
sudo apt install git-flow
git flow init
Branches
main/master: Produktiondevelop: Integrationfeature/*: neue Featuresrelease/*: Release Vorbereitunghotfix/*: Produktion Fix
Feature
code
git flow feature start my_feature
git flow feature finish my_feature
Release
code
git flow release start v1.2.3
git flow release finish v1.2.3
Hotfix
code
git flow hotfix start v1.2.4
git flow hotfix finish v1.2.4
Remote Branch loeschen
code
git push origin --delete feature/my_feature