gitflow 的原理以及使用 - tianlu1677/tianlu1677.github.io GitHub Wiki

Gitflow的链接地址

gitflow github

gitflow 解释

git flow 的常用命令

brew install git-flow

git flow init

git flow feature start ali_pay 
git flow feature finish ali_pay
git flow feature publish ali_pay

git flow release start RELEASE [BASE] #从 master 分出
git flow release publish RELEASE      # 发布release,但很少用
git flow release finish RELEASE      # 发布完release 后,合并到master stable
git push --tags # tag 的名字就是分支的名称

git flow hotfix start VERSION [BASENAME]
git flow hotfix finish VERSION