Gitflow: Difference between revisions

From Rixort Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 10: Line 10:


  git flow feature start feature_name
  git flow feature start feature_name
Add, commit etc. as normal, then finish with:
git flow feature finish feature_name


[[Category:Version Control]]
[[Category:Version Control]]
[[Category:Git]]
[[Category:Git]]

Latest revision as of 10:26, 18 June 2021

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