您的位置:首页 > 其它

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

2012-07-12 14:44 288 查看
很好用的工具,给出了很好的开发模式

安装:

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/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: