[PATCH v2 6/6] docs/devel: Update the rST index file

Kashyap Chamarthy posted 6 patches 4 years, 3 months ago
Maintainers: Michael Tokarev <mjt@tls.msk.ru>, Laurent Vivier <laurent@vivier.eu>
There is a newer version of this series
[PATCH v2 6/6] docs/devel: Update the rST index file
Posted by Kashyap Chamarthy 4 years, 3 months ago
Add the entries for contributing-related rSTified wiki docs.

Signed-off-by: Kashyap Chamarthy <kchamart@redhat.com>
---
 docs/devel/index.rst | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/docs/devel/index.rst b/docs/devel/index.rst
index f95df10b3e..f7bec644f3 100644
--- a/docs/devel/index.rst
+++ b/docs/devel/index.rst
@@ -45,3 +45,8 @@ modifying QEMU's source code.
    vfio-migration
    qapi-code-gen
    writing-qmp-commands
+   trivial-patches
+   spell-check
+   key-signing-party
+   submitting-a-pull-request
+   submitting-a-patch
-- 
2.31.1


Re: [PATCH v2 6/6] docs/devel: Update the rST index file
Posted by Peter Maydell 4 years, 3 months ago
On Tue, 19 Oct 2021 at 10:04, Kashyap Chamarthy <kchamart@redhat.com> wrote:
>
> Add the entries for contributing-related rSTified wiki docs.
>
> Signed-off-by: Kashyap Chamarthy <kchamart@redhat.com>
> ---
>  docs/devel/index.rst | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/docs/devel/index.rst b/docs/devel/index.rst
> index f95df10b3e..f7bec644f3 100644
> --- a/docs/devel/index.rst
> +++ b/docs/devel/index.rst
> @@ -45,3 +45,8 @@ modifying QEMU's source code.
>     vfio-migration
>     qapi-code-gen
>     writing-qmp-commands
> +   trivial-patches
> +   spell-check
> +   key-signing-party
> +   submitting-a-pull-request
> +   submitting-a-patch

You should update the index.rst in the same patch in which you
add the new .rst file. Otherwise Sphinx will complain about
orphan files if you do a build at the commit where the file
was added but before the index.rst was updated.

-- PMM