123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <refentry id="man.gbp.config">
- <refentryinfo>
- <address>
- &dhemail;
- </address>
- <author>
- &dhfirstname;
- &dhsurname;
- </author>
- </refentryinfo>
- <refmeta>
- <refentrytitle>gbp-config</refentrytitle>
- &dhsection;
- </refmeta>
- <refnamediv>
- <refname>gbp-config</refname>
- <refpurpose>Query configuration values</refpurpose>
- </refnamediv>
- <refsynopsisdiv>
- <cmdsynopsis>
- &gbp-config;
- &man.common.options.synopsis;
- <group choice='req'>
- <arg choice="plain"><replaceable>command.option</replaceable></arg>
- <arg choice="plain"><replaceable>command</replaceable></arg>
- </group>
- </cmdsynopsis>
- </refsynopsisdiv>
- <refsect1>
- <title>DESCRIPTION</title>
- <para>
- &gbp-config; prints values from the configuration files. It interpolates the
- value for <replaceable>option</replaceable> of
- <replaceable>command</replaceable>.
- </para>
- </refsect1>
- <refsect1>
- <title>OPTIONS</title>
- <variablelist>
- &man.common.options.description;
- </variablelist>
- </refsect1>
- <refsect1>
- <title>EXIT CODES</title>
- <para>
- When &gbp-config; finishes, it indicates success or failure with its exit code:
- </para>
- <variablelist>
- <varlistentry>
- <term><option>0</option></term>
- <listitem>
- <para>Success.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term><option>1</option></term>
- <listitem>
- <para>Failed to parse command line</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term><option>2</option></term>
- <listitem>
- <para>The value did not exist</para>
- </listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
- <refsect1>
- <title>EXAMPLES</title>
- <para>Print the value <option>upstream-branch</option> that &gbp-buildpackage;
- would use:</para>
- <screen>
- $ gbp config buildpackage.upstream-branch
- buildpackage.upstream-branch=upstream
- </screen>
- <para>Print the values of all of &gbp-buildpackage; options</para>
- <screen>
- $ gbp config buildpackage
- buildpackage.upstream-branch=upstream
- buildpackage.debian-branch=master
- ...
- </screen>
- </refsect1>
- <refsect1>
- &man.gbp.config-files;
- </refsect1>
- <refsect1>
- <title>SEE ALSO</title>
- <para>
- <xref linkend="man.gbp.conf"/>
- </para>
- </refsect1>
- <refsect1>
- <title>AUTHOR</title>
- <para>&dhusername; &dhemail;</para>
- </refsect1>
- </refentry>
|