- the
developbranch is where ALL development starts from and merges to. - the
masterbranch ALWAYS matches production - typical workflow would be branch a feature branch from
develop, code and commit often. When code is readt for review & merge, open a Pull Request from the branch todevelop. - a typical deploy to production will take the
developbranch and merge tomaster. Themasterbranch will then be deployed to production machines. - a
hotfixis defined as a mission critical change that must be deployed to production with expediency.- the proper way to handle a
hotfixis to branch frommasterand open a Pull Request from the branch tomaster
- the proper way to handle a
Last active
August 29, 2015 14:19
-
-
Save clok/4e7c6bcecebbb19c6d9d to your computer and use it in GitHub Desktop.
Development to production branching notes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment