Created
July 20, 2015 15:12
-
-
Save JakeGinnivan/f26ae57adbd9b74f74c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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