diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-04-19 20:40:59 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-05-04 20:15:10 +0300 |
commit | 5b16129f198169ce30344746ea911ce1016e509e (patch) | |
tree | dfe43089ad7700ad085db8e4defb5ed043f3768c /doc/man | |
parent | pkgdev mask: offer to send email to gentoo-dev ML (diff) | |
download | pkgdev-5b16129f198169ce30344746ea911ce1016e509e.tar.gz pkgdev-5b16129f198169ce30344746ea911ce1016e509e.tar.bz2 pkgdev-5b16129f198169ce30344746ea911ce1016e509e.zip |
Add documentation for configuration
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'doc/man')
-rw-r--r-- | doc/man/config.rst | 50 | ||||
-rw-r--r-- | doc/man/pkgdev.rst | 2 |
2 files changed, 52 insertions, 0 deletions
diff --git a/doc/man/config.rst b/doc/man/config.rst new file mode 100644 index 0000000..dbed14c --- /dev/null +++ b/doc/man/config.rst @@ -0,0 +1,50 @@ +Config file support +=================== + +Config files are supported by most subcommands of ``pkgdev`` from any of three +locations. Listed in order of increasing precedence these include the +following: + +- system config -- /etc/pkgdev/pkgdev.conf +- user config -- ~/.config/pkgdev/pkgdev.conf +- custom config -- specified via the --config option + +Any settings from a config file with higher precedence will override matching +settings from a config file with a lower precedence, e.g. user settings +override system settings. Note that command line options override any matching +config file setting. + +In terms of file structure, basic INI formatting is required and allows +creating a default section (DEFAULT) for system-wide settings or repo-specific +sections. The INI key-value pairs directly relate to the available +long-options supported by the various prefixed by the subcommand name and their +related values. To find all possible configuration options, run: +``pkgdev {subcommand} --help``. See the following examples for config settings: + +- Run ``pkgcheck scan`` before committing and asks for confirmation (instead of + aborting) when creating commits with QA errors:: + + [DEFAULT] + commit.scan = true + commit.ask = true + +- Allow pushing commits with QA errors, but only for the 'gentoo' repository:: + + [gentoo] + push.ask = true + +- When committing, stage all files in current working directory (note that this + option doesn't expect value, therefore no value is defined post equal sign):: + + [DEFAULT] + commit.all = + +- All previous config settings combined:: + + [DEFAULT] + commit.scan = true + commit.ask = true + commit.all = + + [gentoo] + push.ask = diff --git a/doc/man/pkgdev.rst b/doc/man/pkgdev.rst index 92b3749..29ca259 100644 --- a/doc/man/pkgdev.rst +++ b/doc/man/pkgdev.rst @@ -7,6 +7,8 @@ pkgdev .. include:: pkgdev/_options.rst .. include:: pkgdev/_subcommands.rst +.. include:: config.rst + Reporting Bugs ============== |