Skip to content

Developers diagram details

Juanlu edited this page Dec 22, 2015 · 5 revisions

Diagram generated by http://plantuml.sourceforge.net/ with the following code:

@startuml

title Development Policy: Developers

box "Local" #LightBlue
    participant "feature/#224-title" 
    participant "LocalDevelop" 
    participant "LocalMaster" 
end box

box "Origin" #98FB98
    participant "Develop" 
    participant "Master" 
end box

Master -> LocalMaster: clone
Develop -> LocalDevelop: checkout

note over LocalDevelop #F0E68C: (1) Create issue #224

LocalDevelop -> "feature/#224-title": git flow feature start\n #224-title
rnote over "feature/#224-title" #98FB98: Coding...
...

Develop -> "feature/#224-title": pull

rnote over "feature/#224-title" #F0E68C: (2) Resolve conflicts
rnote over "feature/#224-title" #F0E68C: (3) Create unit test
rnote over "feature/#224-title" #F0E68C: (4) Run tests
rnote over "feature/#224-title" #F0E68C: (5) Update QA directory
rnote over "feature/#224-title" #F0E68C: (6) Create Pull Request

@enduml