TASIOMIND.DEV — OPERATIONAL▸▸▸FULL STACK DEVELOPER @ GWQ SERVICEPLUS AG▸▸▸FOUNDER — K8SGPT.AI▸▸▸OPEN SOURCE: ACTIVE▸▸▸DISTRIBUTED SYSTEMS / KUBERNETES / AI▸▸▸RUST + GO + PYTHON▸▸▸FIELD TESTED / STATUS — NOMINAL▸▸▸LOCATION: EUROPE/BERLIN▸▸▸TASIOMIND.DEV — OPERATIONAL▸▸▸FULL STACK DEVELOPER @ GWQ SERVICEPLUS AG▸▸▸FOUNDER — K8SGPT.AI▸▸▸OPEN SOURCE: ACTIVE▸▸▸DISTRIBUTED SYSTEMS / KUBERNETES / AI▸▸▸RUST + GO + PYTHON▸▸▸FIELD TESTED / STATUS — NOMINAL▸▸▸LOCATION: EUROPE/BERLIN▸▸▸

gitflow

Gitflow

Install:

code
brew install git-flow
sudo apt install git-flow
git flow init

Branches

  • main / master: Produktion
  • develop: Integration
  • feature/*: neue Features
  • release/*: Release Vorbereitung
  • hotfix/*: 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

Links