summaryrefslogtreecommitdiffstats
path: root/images/user
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-09-30 12:18:57 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-10-30 14:09:11 +0100
commit13ed966164f9b0488504f13b84496bb4c0c92a72 (patch)
tree39b17569b5cc35a1de4cb1f46013692e933babb5 /images/user
parentuser: Update contributing section (diff)
downloadrtems-docs-13ed966164f9b0488504f13b84496bb4c0c92a72.tar.bz2
user: Document patch review process
Diffstat (limited to 'images/user')
-rw-r--r--images/user/patch-review.pngbin0 -> 66700 bytes
-rw-r--r--images/user/patch-review.puml48
2 files changed, 48 insertions, 0 deletions
diff --git a/images/user/patch-review.png b/images/user/patch-review.png
new file mode 100644
index 0000000..ddfaf38
--- /dev/null
+++ b/images/user/patch-review.png
Binary files differ
diff --git a/images/user/patch-review.puml b/images/user/patch-review.puml
new file mode 100644
index 0000000..8134859
--- /dev/null
+++ b/images/user/patch-review.puml
@@ -0,0 +1,48 @@
+' SPDX-License-Identifier: CC-BY-SA-4.0
+
+' Copyright (C) 2019 embedded brains GmbH
+
+@startuml
+
+start
+
+:Arrange your changes in\nan easy to review and\ncoherent patch series;
+
+:Apply the checklist for patches;
+
+:Invoke: ""git format-patch"";
+
+:Send the patch series to devel@rtems.org for review;
+
+:Set N to 1;
+
+while (Reviewers demand changes in the patch series?) is (Yes)
+ :Do the required changes and create a new patch series;
+
+ :Update the commit messages accordingly;
+
+ :Apply the checklist for patches;
+
+ :Set N to N + 1;
+
+ :Invoke: ""git format-patch -v $N"";
+
+ :Document the changes from version N - 1 to N\nin the patch file after the "---" line;
+
+ :Send the patch series to devel@rtems.org for review;
+endwhile (No)
+
+if (Patch series was accepted by reviewers?) then (Yes)
+ :Push the patch series\nto the project repository;
+
+ note right
+ Push performed by an approved
+ RTEMS committer.
+ end note
+else (No)
+ :Discard the patch series;
+endif
+
+stop
+
+@enduml