summaryrefslogtreecommitdiff
path: root/man/ostree-remote.xml
blob: c303014e9ee1033029c02cefabe051988b1f6eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?xml version='1.0'?> <!--*-nxml-*-->
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
    "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">

<!--
Copyright 2014 Anne LoVerso <anne.loverso@students.olin.edu>

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
-->

<refentry id="ostree">

    <refentryinfo>
        <title>ostree remote</title>
        <productname>OSTree</productname>

        <authorgroup>
            <author>
                <contrib>Developer</contrib>
                <firstname>Colin</firstname>
                <surname>Walters</surname>
                <email>walters@verbum.org</email>
            </author>
        </authorgroup>
    </refentryinfo>

    <refmeta>
        <refentrytitle>ostree remote</refentrytitle>
        <manvolnum>1</manvolnum>
    </refmeta>

    <refnamediv>
        <refname>ostree-remote</refname>
        <refpurpose>Control remote repository configuration</refpurpose>
    </refnamediv>

    <refsynopsisdiv>
            <cmdsynopsis>
                <command>ostree remote add</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg> <arg choice="req">URL</arg> <arg choice="opt" rep="repeat">BRANCH</arg>
            </cmdsynopsis>
            <cmdsynopsis>
                <command>ostree remote delete</command> <arg choice="req">NAME</arg>
            </cmdsynopsis>
            <cmdsynopsis>
                <command>ostree remote show-url</command> <arg choice="req">NAME</arg>
            </cmdsynopsis>
            <cmdsynopsis>
                <command>ostree remote list</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg>
            </cmdsynopsis>
            <cmdsynopsis>
                <command>ostree remote gpg-import</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg> <arg choice="opt" rep="repeat">KEY-ID</arg>
            </cmdsynopsis>
            <cmdsynopsis>
                <command>ostree remote refs</command> <arg choice="req">NAME</arg>
            </cmdsynopsis>
            <cmdsynopsis>
                <command>ostree remote summary</command> <arg choice="opt" rep="repeat">OPTIONS</arg> <arg choice="req">NAME</arg>
            </cmdsynopsis>
    </refsynopsisdiv>

    <refsect1>
        <title>Description</title>

        <para>
            Changes remote respository configurations.  The NAME refers to the name of the remote.
        </para>
        <para>
            The <command>gpg-import</command> subcommand can associate GPG keys to a specific remote respository for use when pulling signed commits from that repository (if GPG verification is enabled).
        </para>
        <para>
            The GPG keys to import may be in binary OpenPGP format or ASCII armored.  The optional <arg>KEY-ID</arg> list can restrict which keys are imported from a keyring file or input stream.  All keys are imported if this list is omitted.  If neither <option>--keyring</option> nor <option>--stdin</option> options are given, then keys are imported from the user's personal GPG keyring.
        </para>
    </refsect1>

    <refsect1>
        <title>'Add' Options</title>

        <variablelist>
            <varlistentry>
                <term><option>--set</option>="KEY=VALUE"</term>

                <listitem><para>
                    Set config option KEY=VALUE for remote.
                </para></listitem>
            </varlistentry>

            <varlistentry>
                <term><option>--no-gpg-verify</option></term>

                <listitem><para>
                    Disable GPG verification.
                </para></listitem>
            </varlistentry>

            <varlistentry>
                <term><option>--gpg-import</option>=FILE</term>

                <listitem><para>
                  Import one or more GPG keys from a file.
                </para><para>
                  Equivalent to
                  <command>ostree remote gpg-import --keyring=FILE</command>.
                </para></listitem>
            </varlistentry>
        </variablelist>
    </refsect1>

    <refsect1>
        <title>'List' Options</title>

        <variablelist>
            <varlistentry>
                <term><option>-u, --show-urls</option></term>

                <listitem><para>
                    Show remote URLs in list
                </para></listitem>
            </varlistentry>
        </variablelist>
    </refsect1>

    <refsect1>
        <title>'GPG-Import' Options</title>

        <variablelist>
            <varlistentry>
                <term><option>-k, --keyring</option>=FILE</term>

                <listitem><para>
                    Import one or more keys from a file.
                </para><para>
                    This option may be repeated to import from multiple files,
                    but may not be used in combination with
                    <option>--stdin</option>.
                </para></listitem>
            </varlistentry>
            <varlistentry>
                <term><option>--stdin</option></term>

                <listitem><para>
                    Import one or more keys from standard input.
                </para><para>
                    This option may not be used in combination with
                    <option>--keyring</option>.
                </para></listitem>
            </varlistentry>
        </variablelist>
    </refsect1>

    <refsect1>
        <title>'Summary' Options</title>

        <variablelist>
            <varlistentry>
                <term><option>--raw</option></term>

                <listitem><para>
                    Show raw variant data
                </para></listitem>
            </varlistentry>
        </variablelist>
    </refsect1>

    <refsect1>
        <title>Example</title>
        <para><command>$ ostree remote show-url local</command></para>
<programlisting>
        http://192.168.122.1/repo
</programlisting>
    </refsect1>
</refentry>