2013年12月10日

git command cheat sheet

摘要: clone:克隆--non-bare:(默认值)一般的克隆方式--bare:只克隆.git目录--mirror:只克隆.git目录,并且还保持与origin的关联,可以fetchcommit:将stage提交到repogit commit:将stage提交到当前分支git commit -m [me... 阅读全文

posted @ 2013-12-10 17:21 yuanpeng 阅读(280) 评论(0) 推荐(0) 编辑

ZT 基于git的版本管理思路

摘要: http://nvie.com/posts/a-successful-git-branching-model/分为5种分支:feature:功能分支,开发人员在此种分支下开发新的功能,开发完成后merge到develop,并删除无用的featuredevelop:开发分支master:主分支,最终产品从此分支feature:功能分支,开发完成后删除release:发布分支,发布之后删除hotfixes:修补分支,改bug之后删除 阅读全文

posted @ 2013-12-10 09:22 yuanpeng 阅读(177) 评论(0) 推荐(0) 编辑

导航