From 874952f80c6d68c1a7a75e71c11a576f96f75dc2 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Mon, 6 Apr 2020 11:56:58 +0200 Subject: [PATCH] CONTRIBUTING: Add entry point for new contributors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's generally expected that a git repository will contain this file, which serves as an entry point for people interested in contributing to the project. In our case, we have extensive documentation available on the website which we don't want to duplicate, so let's just point people there. Signed-off-by: Andrea Bolognani Reviewed-by: Ján Tomko --- CONTRIBUTING.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 CONTRIBUTING.rst diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst new file mode 100644 index 0000000000..68c7b547c6 --- /dev/null +++ b/CONTRIBUTING.rst @@ -0,0 +1,19 @@ +======================= +Contributing to libvirt +======================= + +Full, up to date information on how to contribute to libvirt can be +found on the libvirt website: + +https://libvirt.org/contribute.html + +To build the same document locally, from the top level directory of +your git clone run: + +:: + + $ mkdir build && cd build + $ ../autogen.sh + $ make + +You'll find the freshly-built document in ``docs/contribute.html``.