Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 612 Bytes

README.md

File metadata and controls

23 lines (12 loc) · 612 Bytes

DEV0005-GITBranchingModel

Preferred branching model to work with At-Bristol

Small project

master -------------> Contains finished release - release number denoted by semantic versioning number in tag

develop ------------> Main development branch

Large project

hotfix -------------> Branch name convention hotfix-*

release ------------> Branch name convention release-*

feature ------------> Named anything except master, develop, release-, or hotfix- don't push to origin

Details

Based on branching model described here

http://nvie.com/posts/a-successful-git-branching-model/