很好用的工具,给出了很好的开发模式
安装:
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/
来源:oschina
链接:https://my.oschina.net/u/4355/blog/66668