几种 git workflow

对于开源软件以及免费软件的交流心得,完全禁止对于盗版的讨论。
php 语言,Git 使用,Linux 服务器等
回复
头像
davidyin
网站管理员
网站管理员
帖子: 1431
注册时间: 2015年11月19日 01:50
联系:

几种 git workflow

帖子 davidyin »

Git Workflow 是为了更好的使用 Git 来完成项目或者生产的需要,所采取的一种方法。

常见的几种 Git Workflow
  • Centralized Workflow
  • Feature branching
  • Gitflow Workflow
  • Forking Workflow
居住在西八区,有时差,提问请按照“通用提问格式”提问,未必能及时回复,见谅。
提供 phpBB 服务
头像
davidyin
网站管理员
网站管理员
帖子: 1431
注册时间: 2015年11月19日 01:50
联系:

Gitflow Workflow

帖子 davidyin »

Some key takeaways to know about Gitflow are:
  • The workflow is great for a release-based software workflow.
  • Gitflow offers a dedicated channel for hotfixes to production.
基于发布的工作流。

The overall flow of Gitflow is:
  1. A develop branch is created from master
  2. A release branch is created from develop
  3. Feature branches are created from develop
  4. When a feature is complete it is merged into the develop branch
  5. When the release branch is done it is merged into develop and master
  6. If an issue in master is detected a hotfix branch is created from master
  7. Once the hotfix is complete it is merged to both develop and master
居住在西八区,有时差,提问请按照“通用提问格式”提问,未必能及时回复,见谅。
提供 phpBB 服务
回复