mirror of https://gitee.com/openkylin/libvirt.git
docs: update all GIT repo examples to use https:// protocol
The https:// protocol is much more reliably usable than git:// when faced with unreasonably strict firewalls. The libvirt.org web server is now setup to support the smart https:// protocol, which is just as fast as git://, so change all the docs to use https:// Reviewed-by: Pavel Hrdina <phrdina@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
8c686a56a2
commit
4cbdd186e1
|
@ -25,7 +25,7 @@ few prerequisites, later, a plain `git pull && make' should be sufficient.
|
|||
|
||||
You can get a copy of the source repository like this:
|
||||
|
||||
$ git clone git://libvirt.org/libvirt
|
||||
$ git clone https://libvirt.org/git/libvirt.git
|
||||
$ cd libvirt
|
||||
|
||||
As an optional step, if you already have a copy of the gnulib git
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
</p>
|
||||
|
||||
<pre>
|
||||
git clone git://libvirt.org/libvirt-csharp.git
|
||||
git clone https://libvirt.org/git/libvirt-csharp.git
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
|
|
|
@ -29,13 +29,13 @@
|
|||
|
||||
<pre>
|
||||
# C language
|
||||
$ git clone <a href="https://libvirt.org/git/?p=libvirt-appdev-guide.git">git://libvirt.org/libvirt-appdev-guide.git</a>
|
||||
$ git clone <a href="https://libvirt.org/git/?p=libvirt-appdev-guide.git">https://libvirt.org/git/libvirt-appdev-guide.git</a>
|
||||
|
||||
# Python language
|
||||
$ git clone <a href="https://libvirt.org/git/?p=libvirt-appdev-guide-python.git">git://libvirt.org/libvirt-appdev-guide-python.git</a>
|
||||
$ git clone <a href="https://libvirt.org/git/?p=libvirt-appdev-guide-python.git">https://libvirt.org/git/libvirt-appdev-guide-python.git</a>
|
||||
|
||||
# Publican Style/Theme
|
||||
$ git clone <a href="https://libvirt.org/git/?p=libvirt-publican.git">git://libvirt.org/libvirt-publican.git</a>
|
||||
$ git clone <a href="https://libvirt.org/git/?p=libvirt-publican.git">https://libvirt.org/git/libvirt-publican.git</a>
|
||||
</pre>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -516,6 +516,15 @@
|
|||
Each module can be cloned anonymously using:
|
||||
</p>
|
||||
|
||||
<pre>
|
||||
git clone https://libvirt.org/git/[module name].git</pre>
|
||||
|
||||
<p>
|
||||
The <code>git://</code> protocol is also available if desired, but
|
||||
<code>https://</code> is encouraged, since it is more reliable when
|
||||
faced with strict firewalls.
|
||||
</p>
|
||||
|
||||
<pre>
|
||||
git clone git://libvirt.org/[module name].git</pre>
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
<li>
|
||||
<p>Official upstream repository is kept in git
|
||||
(<code>git://libvirt.org/libvirt.git</code>) and is browsable
|
||||
(<code>https://libvirt.org/git/libvirt.git</code>) and is browsable
|
||||
along with other libvirt-related repositories
|
||||
(e.g. libvirt-python) <a href="https://libvirt.org/git/">online</a>.</p>
|
||||
</li>
|
||||
|
|
|
@ -29,7 +29,7 @@ href="http://git-scm.com/">git</a> repository available on
|
|||
<a href="https://libvirt.org/git/">libvirt.org</a>:
|
||||
</p>
|
||||
<pre>
|
||||
git clone git://libvirt.org/libvirt-java.git
|
||||
git clone https://libvirt.org/git/libvirt-java.git
|
||||
</pre>
|
||||
<p>
|
||||
It can also be browsed at
|
||||
|
|
|
@ -14,7 +14,7 @@ href="http://git-scm.com/">git</a> repository available on
|
|||
<a href="https://libvirt.org/git/">libvirt.org</a>:
|
||||
</p>
|
||||
<pre>
|
||||
git clone git://libvirt.org/libvirt-php.git
|
||||
git clone https://libvirt.org/git/libvirt-php.git
|
||||
</pre>
|
||||
<p>
|
||||
It can also be browsed at
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
</p>
|
||||
|
||||
<pre>
|
||||
git clone git://libvirt.org/libvirt-virshcmdref.git
|
||||
git clone https://libvirt.org/git/libvirt-virshcmdref.git
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
|
|
Loading…
Reference in New Issue