Skip to content

Instantly share code, notes, and snippets.

@JakeGinnivan
Created July 21, 2015 01:05
Show Gist options
  • Select an option

  • Save JakeGinnivan/05119d0cd4ecaaefff94 to your computer and use it in GitHub Desktop.

Select an option

Save JakeGinnivan/05119d0cd4ecaaefff94 to your computer and use it in GitHub Desktop.
@startuml
participant master
participant develop
master -> master: tag 1.2.0
master -> develop: branch from master
develop -> develop: commit
note over develop #D3D3D3: 1.3.0-unstable.1
create participant "feature/myfeature" as feature
develop -> feature: branch from develop
activate feature
note over feature #D3D3D3: 1.3.0-myfeature.1+1
feature -> feature: commit
note over feature #D3D3D3: 1.3.0-myfeature.1+2
feature -> develop: merge
destroy feature
note over feature
Feature branches should
be deleted once merged
end note
note over develop #D3D3D3: 1.3.0-unstable.3
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment