git flow에서는 기본적으로 branch 의 타입마다 subdirectory를 쓰게 되어 있다. 그러나 운영을 편하게 하기 위해서 subdirectory가 아니라 버전단위(-)로 지정 할 수 있다.

 

$ git flow init  -f

Which branch should be used for bringing forth production releases?
   - develop
   - master
Branch name for production releases: [master]

Which branch should be used for integration of the "next release"?
   - develop
Branch name for "next release" development: [develop]

How to name your supporting branch prefixes?
Feature branches? [feature/] feature-
Release branches? [release/] release-
Hotfix branches? [hotfix/] hotfix-
Support branches? [support/] support-
Version tag prefix? [] v

Posted by '김용환'
,