docs: Document issue and merge request triaging and review guidelines

This documents the practices that I’ve been trying to follow for the
last few years for managing GLib issues and merge requests, and why they
seem to work well enough.

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
Philip Withnall
2022-05-22 17:10:42 +01:00
parent 9ef3ebc23c
commit 0c640f0130
3 changed files with 165 additions and 3 deletions

View File

@@ -4,12 +4,12 @@ Simple install procedure
```sh
tar xf glib-*.tar.gz # unpack the sources
cd glib-* # change to the toplevel directory
meson _build # configure the build
ninja -C _build # build GLib
meson setup _build # configure the build
meson compile -C _build # build GLib
# Become root if necessary
ninja -C _build install # install GLib
meson install -C _build # install GLib
```
Requirements