Skip to content

Instantly share code, notes, and snippets.

@JakeGinnivan
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save JakeGinnivan/09fdf46995b771f3164a to your computer and use it in GitHub Desktop.

Select an option

Save JakeGinnivan/09fdf46995b771f3164a 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 "pull/2/merge" as pr
develop -> pr: branch from develop
activate pr
note over pr #D3D3D3: 1.3.0-PullRequest.2+1
pr -> pr: commit
note over pr #D3D3D3: 1.3.0-PullRequest.2+2
pr -> develop: merge
destroy pr
note over pr
Feature branches/pr's 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