Creating feature branch using git flow

Creating feature branch using git flow

Instructor-svgAl-Mamun Sarkar
Apr 12 , 2020

Creating feature branch using git flow. The following commands show how to mange a feature branch using git-flow.

 

Create feature brach from develop branch:

Switch to develop branch:

git checkout develop
git pull origin develop

Create feature branch:

git flow feature start feature_branch_name

 

Complete a feature:

git flow feature finish feature_branch_name

 

  • Share On:
  • fb
  • twitter
  • pinterest
  • instagram