aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/manpages/gbp.conf.sgml
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2012-03-21 09:52:34 +0100
committerGuido Günther <agx@sigxcpu.org>2012-03-21 23:41:57 +0100
commitb9d03aff15778f0e32487bec3a76da2e5024929e (patch)
tree36b84fadf7ed62f354bfd48586a881ce95532bbb /docs/manpages/gbp.conf.sgml
parenta884ef569828d9d7875427084d7c830f168a655c (diff)
gbp-create-remote-repo: add --remote-config
This specifies an additional config file section that can be used to preconfigure different remote locations.
Diffstat (limited to 'docs/manpages/gbp.conf.sgml')
-rw-r--r--docs/manpages/gbp.conf.sgml31
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/manpages/gbp.conf.sgml b/docs/manpages/gbp.conf.sgml
index e0330d73..09999beb 100644
--- a/docs/manpages/gbp.conf.sgml
+++ b/docs/manpages/gbp.conf.sgml
@@ -58,6 +58,11 @@
[&lt;command&gt;]
# Specific sections for each command, like &git-buildpackage;
key = value
+
+ [remote-config &lt;name&gt;]
+ # Specific sections for a remote configuration. This can be used several
+ # times to set up remote configuration for gbp-create-remote-repo
+ key = value
</programlisting>
<para>
@@ -125,6 +130,32 @@ can't be configured via gbp.conf.
</para>
</note>
+<para>
+<xref linkend="gbp.man.gbp.create.remote.repo"> can additionally parse remote site
+configurations from <filename>gbp.conf</filename>. For example a configration like:
+</para>
+
+<programlisting>
+[remote-config pkg-libvirt]
+# Location of the repository
+remote-url-pattern = ssh://git.debian.org/git/pkg-libvirt/%(pkg)s
+# Template dir to passed to git-init
+template-dir = /srv/alioth.debian.org/chroot/home/groups/pkg-libvirt/git-template
+</programlisting>
+
+<para>
+Can be used to create remote repositories for the pkg-libvirt project using:
+</para>
+
+<programlisting>
+gbp-create-remote-repo --remote-config=pkg-libvirt
+</programlisting>
+
+<para>
+This can be useful if you're often creating new remote repositores for
+different projects.
+</para>
+
</refsect1>
<refsect1>
<title>EXAMPLES</title>