Git
gitflow
参考:https://zhuanlan.zhihu.com/p/43844470

安装
bash
brew install git-flow-avhbash
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