Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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