OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

virtio-comment message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: [PATCH 1/2] Rearranged the "Providing Feedback" section of README.md


From: Yoni Bettan <yonibettan@gmail.com>

Just arranged the alignment and also updated bullet #5 to fit multiple commits
instead of a single one.

Signed-off-by: Yoni Bettan <ybettan@redhat.com>
---
 README.md | 60 +++++++++++++++++++++++++++++++++++++------------------
 1 file changed, 41 insertions(+), 19 deletions(-)

diff --git a/README.md b/README.md
index 5ac84f9..f2fa5d0 100644
--- a/README.md
+++ b/README.md
@@ -71,25 +71,47 @@ have any attachments.
 A patch can be generated and sent by cloning the spec repository,
 creating a commit, formatting it as a patch and then sending it.
 For example:
-<code>
-<p>
-git clone https://github.com/oasis-tcs/virtio-spec.git<br>
-... edit spec text, and save ...<br>
-<p>
-git commit -a<br>
-... describe the proposed change, in the following format:<br>
-single line summary<br>
-<br>
-detailed description, including motivation for the change<br>
-<br>
-Signed-off-by: Name &lt;email&gt;<br>
-... then save and close the editor ... <br>
-<p>
-git format-patch -o proposal1/ HEAD~1..<br>
-... generates a new directory proposal1/ and a file starting with 0001- ...<br>
-<p>
-git send-email --to=virtio-comment@lists.oasis-open.org proposal1/0001-*
-</code>
+<ol>
+<li>
+  clone the repository using
+  <code> git clone https://github.com/oasis-tcs/virtio-spec.git </code><br>
+</li>
+
+<li>
+  edit spec text and save<br>
+</li>
+
+<li>
+  commit changes using
+  <code> git commit -a</code> 
+  and describe the proposed change, in the following format:<br>
+  <br>
+  single line summary<br>
+  <br>
+  detailed description, including motivation for the change<br>
+  <br>
+  Signed-off-by: Name &lt;email&gt;<br>
+  <br>
+</li>
+
+<li>
+  save and close the editor<br>
+</li>
+
+<li>
+  create the patch using 
+  <code>
+    git format-patch -o proposal1/ HEAD~N
+  </code> 
+  - it will generates a new directory 'proposal1/' and a files starting with '0001-...' based on the last N commits of your git log <br>
+
+<li>
+  send the patch using 
+  <code>
+    git send-email --to=virtio-comment@lists.oasis-open.org proposal1/0001-*
+  </code>
+</li>
+</ol>
 <h4>Note for TC Members</h4>
 <p>TC Members should review TC specific
 process rules under "Further Description of this Repository"
-- 
2.21.0



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]