git-flow 分支管理模式其工具

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-01 16:16:44

很好用的工具,给出了很好的开发模式

安装:

git clone git://github.com/nvie/gitflow.git

cd gitflow

git submodule init

git submodule update

sudo make install

简单使用:

git flow init

git branch

git flow feature start test

git flow feature finish test

git flow release start 1.0

git flow release finish 1.0 

这个时候得到最新的master和develop分支 

不过下面参考的图中,好像release finish合并到master上的不是release上的分支,而是develop上的

 

主页:

https://github.com/nvie/gitflow/

参考:

http://ihower.tw/blog/archives/5140/

http://www.jeffkit.info/2010/12/842/

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!