Skip to content

Instantly share code, notes, and snippets.

@JakeGinnivan
Created July 20, 2015 15:14
Show Gist options
  • Select an option

  • Save JakeGinnivan/39f9d8b8b007c82f1f80 to your computer and use it in GitHub Desktop.

Select an option

Save JakeGinnivan/39f9d8b8b007c82f1f80 to your computer and use it in GitHub Desktop.
@startuml
participant master
participant develop
master -> master: tag 1.3.0
master -> develop: branch from master
develop -> develop: commit
create participant "release/2.0.0" as release
develop -> release: branch from develop
activate release
note over release #D3D3D3: 2.0.0-beta.1+0
develop -> develop: commit
note over develop #D3D3D3: 1.4.0-unstable.2
release -> release: commit
note over release #D3D3D3: 2.0.0-beta.1+1
release -> release: tag 2.0.0-beta.1
note over release #D3D3D3: 2.0.0-beta.1
release -> release: commit
note over release #D3D3D3: 2.0.0-beta.2+2
release -> master: merge
release -> develop: merge
destroy release
note over release
Release branches are deleted once merged
end note
note over master #D3D3D3: 2.0.0+0
master -> master: tag 2.0.0
note over master #D3D3D3: 2.0.0
note over develop #D3D3D3: 2.1.0-unstable.2
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment