about summary refs log tree commit diff
path: root/static
diff options
context:
space:
mode:
authorNgô Ngọc Đức Huy <huyngo@disroot.org>2021-07-05 10:16:53 +0700
committerNgô Ngọc Đức Huy <huyngo@disroot.org>2021-07-05 10:16:53 +0700
commit2b966c47cac1e07717ca6270047f4b7262d26c63 (patch)
tree1470b6cad2b598eb359850fae67c4cacd461d65d /static
parent772492ef64ceea2903cae0d838523dbfe913e9a3 (diff)
downloadblog-2b966c47cac1e07717ca6270047f4b7262d26c63.tar.gz
Add image
Diffstat (limited to 'static')
-rw-r--r--static/images/git-pr.pngbin0 -> 16907 bytes
-rw-r--r--static/images/git-pr.uml20
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