-
初始化Git Flow
git flow init
-
创建一个新功能分支
git flow feature start new-feature
-
完成功能开发
git flow feature finish new-feature
-
创建一个release分支
git flow release start 1.0.0
-
完成release分支
git flow release finish 1.0.0
-
紧急修复
git flow hotfix start hotfix-issue
git flow hotfix finish hotfix-issue