Github

From UMAWiki
Revision as of 04:28, 21 July 2017 by Kenamis (talk | contribs) (Created page with "UMA source code is located at https://github.com/umasteeringgroup/UMA == Github Branching Model == Reference: http://nvie.com/posts/a-successful-git-branching-model/ === Ma...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

UMA source code is located at https://github.com/umasteeringgroup/UMA

Github Branching Model

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

Main Branches

Never commit directly to these branches!

Master

Develop

Supporting Branches

Release

May branch from: develop
Must merge back into: develop and master
Branch naming convention: release-*

Feature

May branch from: develop
Must merge back into: develop
Branch naming convention: feature-*

Hotfix

May branch from: master
Must merge back into: develop and master
Branch naming convention: hotfix-*