git: 5755cad0f0 - main - committers-guide: Fix indentation of commit message examples

Mateusz Piotrowski 0mp at FreeBSD.org
Tue Apr 20 15:46:10 UTC 2021


The branch main has been updated by 0mp:

URL: https://cgit.FreeBSD.org/doc/commit/?id=5755cad0f0248f797648076b754900e9a19d6667

commit 5755cad0f0248f797648076b754900e9a19d6667
Author:     Mateusz Piotrowski <0mp at FreeBSD.org>
AuthorDate: 2021-04-20 15:44:20 +0000
Commit:     Mateusz Piotrowski <0mp at FreeBSD.org>
CommitDate: 2021-04-20 15:45:54 +0000

    committers-guide: Fix indentation of commit message examples
---
 .../content/en/articles/committers-guide/_index.adoc | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/documentation/content/en/articles/committers-guide/_index.adoc b/documentation/content/en/articles/committers-guide/_index.adoc
index 0944750736..1b698c39a9 100644
--- a/documentation/content/en/articles/committers-guide/_index.adoc
+++ b/documentation/content/en/articles/committers-guide/_index.adoc
@@ -2618,7 +2618,7 @@ The commit message "PR" field is filled.
 ....
 ...
 
-	    PR:                    12345
+PR:		12345
 ....
 
 The committer sets the author of the patch with `git commit --author "John Smith <John.Smith at example.com>"`.
@@ -2636,7 +2636,7 @@ After posting patches to the appropriate mailing list (in this case, `freebsd-ar
 ....
 ...
 
-	    Reviewed by:       -arch
+Reviewed by:	-arch
 ....
 
 ====
@@ -2651,7 +2651,7 @@ Commit a port, after working with the listed MAINTAINER, who said to go ahead an
 ....
 ...
 
-	    Approved by:	    abc (maintainer)
+Approved by:	abc (maintainer)
 ....
 
 Where _abc_ is the account name of the person who approved.
@@ -2667,7 +2667,7 @@ Committing some code based on work done in the OpenBSD project.
 ....
 ...
 
-	    Obtained from:      OpenBSD
+Obtained from:	OpenBSD
 ....
 
 ====
@@ -2682,7 +2682,7 @@ Committing some code which will be merged from FreeBSD-CURRENT into the FreeBSD-
 ....
 ...
 
-MFC after:      2 weeks
+MFC after:	2 weeks
 ....
 
 Where _2_ is the number of days, weeks, or months after which an MFC is planned. The _weeks_ option may be `day`, `days`, `week`, `weeks`, `month`, `months`.
@@ -2702,11 +2702,11 @@ The extra information to include in the commit would look something like
 
 [.programlisting]
 ....
-PR:                 54321
-Reviewed by:        -arch
-Obtained from:      NetBSD
-MFC after:          1 month
-Relnotes:           yes
+PR:		54321
+Reviewed by:	-arch
+Obtained from:	NetBSD
+MFC after:	1 month
+Relnotes:	yes
 ....
 
 ====


More information about the dev-commits-doc-all mailing list