Skip to content

Instantly share code, notes, and snippets.

View zhshhere's full-sized avatar

zhangsheng zhshhere

  • Beijing
View GitHub Profile
@zhshhere
zhshhere / git-flow.md
Last active August 29, 2015 14:13 — forked from yesmeck/git-flow.md

Git 协作流程

master 分支

master 永远处于稳定状态,这个分支代码可以随时用来部署。不允许在该分支直接提交代码。

develop 分支

开发分支,包含了项目最新的功能和代码,所有开发都在 develop 上进行。一般情况下小的修改直接在这个分支上提交代码。