Which branch should be used for bringing forth production releases? - master - production Branch name for production releases: [production] production # productionをリリース用ブランチにする
Which branch should be used for integration of the "next release"? - master Branch name for"next release" development: [master] # masterを開発用ブランチにする
# あとはデフォルト How to name your supporting branch prefixes? Feature branches? [feature/] Release branches? [release/] Hotfix branches? [hotfix/] Support branches? [support/] Version tag prefix? []
試してみる:
$ git flow feature start hoge # フィーチャーブランチhoge開始 Switched to a new branch 'feature/hoge'
Summary of actions: - A new branch 'feature/hoge' was created, based on 'master' - You are now on branch 'feature/hoge'
Now, start committing on your feature. When done, use:
Summary of actions: - The feature branch 'feature/hoge' was merged into 'master' - Feature branch 'feature/hoge' has been removed - You are now on branch 'master'