Gitflow: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
git flow init | 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 | |||
[[Category:Version Control]] | [[Category:Version Control]] | ||
[[Category:Git]] | [[Category:Git]] |
Latest revision as of 09: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