Web Developer

BitBucket – Gitflow Workflow

  1. Master branch: only contain complete history of project, and only include abridged version
  2. Develop branch: cloned from Master branch, and served as develop process, and merge other feature branches
  3. Feature branch: cloned from Develop branch, never directly interacted with master branch. And serve as developing new features for the project, and after finished coding, this branch will be merged to develop branch
  4. Release branch: cloned from develop branch, and served as new feature polishing before releasing the official version. After finished, it should be merged to both master branch and develop branch
  5. Hotfix branch: cloned from master branch, and served as fixing bug in the official versions. After finished, it should be merged to both master branch and develop branch

Leave a Reply

Your email address will not be published. Required fields are marked *.

*
*
You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>