From owner-dev-commits-doc-all@freebsd.org Tue Apr 20 15:46:10 2021 Return-Path: Delivered-To: dev-commits-doc-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 870AC5DC1EB for ; Tue, 20 Apr 2021 15:46:10 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FPp1t3N0Hz4t84; Tue, 20 Apr 2021 15:46:10 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6522A15649; Tue, 20 Apr 2021 15:46:10 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13KFkAxJ031778; Tue, 20 Apr 2021 15:46:10 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13KFkA24031777; Tue, 20 Apr 2021 15:46:10 GMT (envelope-from git) Date: Tue, 20 Apr 2021 15:46:10 GMT Message-Id: <202104201546.13KFkA24031777@gitrepo.freebsd.org> To: doc-committers@FreeBSD.org, dev-commits-doc-all@FreeBSD.org From: Mateusz Piotrowski <0mp@FreeBSD.org> Subject: git: 5755cad0f0 - main - committers-guide: Fix indentation of commit message examples MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: 0mp X-Git-Repository: doc X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 5755cad0f0248f797648076b754900e9a19d6667 Auto-Submitted: auto-generated X-BeenThere: dev-commits-doc-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the doc repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Apr 2021 15:46:10 -0000 The branch main has been updated by 0mp: URL: https://cgit.FreeBSD.org/doc/commit/?id=5755cad0f0248f797648076b754900e9a19d6667 commit 5755cad0f0248f797648076b754900e9a19d6667 Author: Mateusz Piotrowski <0mp@FreeBSD.org> AuthorDate: 2021-04-20 15:44:20 +0000 Commit: Mateusz Piotrowski <0mp@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 "`. @@ -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 .... ====