diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-07-05 10:16:53 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-07-05 10:16:53 +0700 |
commit | 2b966c47cac1e07717ca6270047f4b7262d26c63 (patch) | |
tree | 1470b6cad2b598eb359850fae67c4cacd461d65d /static/images/git-pr.uml | |
parent | 772492ef64ceea2903cae0d838523dbfe913e9a3 (diff) | |
download | blog-2b966c47cac1e07717ca6270047f4b7262d26c63.tar.gz |
Add image
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 |