Difference between revisions of "Github"

From UMAWiki
Jump to: navigation, search
(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...")
(No difference)

Revision as of 04:28, 21 July 2017

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-*