diff options
-rw-r--r-- | static/images/git-pr.png | bin | 0 -> 16907 bytes | |||
-rw-r--r-- | static/images/git-pr.uml | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/static/images/git-pr.png b/static/images/git-pr.png new file mode 100644 index 0000000..4febbd8 --- /dev/null +++ b/static/images/git-pr.png Binary files differdiff --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 |