jonathan-freitas / ios-journey

This repo will keep al the things related to my learning of iOS Development.
MIT License
2 stars 0 forks source link

Github/Gitflow Tutorials #4

Open jonathan-freitas opened 6 years ago

jonathan-freitas commented 6 years ago

Official Guides from Github Team

Video Tutorials from Ray Wender Lich - Beginning Git

Video Tutorials from Ray Wender Lich - Mastering Git

Atlassian Tutorial - Gitflow Workflow

screen shot 2018-11-09 at 15 14 12

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.
jonathan-freitas commented 6 years ago

GUIs done and commited today