diff options
Diffstat (limited to 'static/images/git-pr.uml')
-rw-r--r-- | static/images/git-pr.uml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/static/images/git-pr.uml b/static/images/git-pr.uml new file mode 100644 index 0000000..23eeaf9 --- /dev/null +++ b/static/images/git-pr.uml @@ -0,0 +1,20 @@ +@startuml + +node "Maintainer's remote" as remote_a +node "Contributor's remote" as remote_b +node "Maintainer's local" as local_a +node "Contributor's local" as local_b + +actor Maintainer as a +actor Contributor as b + +remote_a <----> local_a +remote_b <----> local_b + +remote_a ----> local_b : "Fetch upstream" +remote_b ----> local_a : "Merge PR" + +local_a -- a +local_b -- b + +@enduml |