Gitflow: Difference between revisions
Jump to navigation
Jump to search
Created page with "Category:Version Control Category:Git" |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
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 | |||
[[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