Gitflow

From Rixort Wiki
Revision as of 10:26, 18 June 2021 by Paul (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Install Gitflow on Ubuntu:

apt install git-flow

First run:

git flow init

Create a feature branch:

git flow feature start feature_name

Add, commit etc. as normal, then finish with:

git flow feature finish feature_name