Git
gitflow
参考:https://zhuanlan.zhihu.com/p/43844470
安装
bash
brew install git-flow-avh
bash
apt-get install git-flow
运行
初始化
bash
git flow init
开始一个特性开发
bash
git flow feature start my-feature
结束分支开发
bash
git flow feature finish my-feature
开始一个release
bash
git flow release start 1.0.0
结束releas
bash
git flow release finish 1.0.0