2

git.videolan.org からvlc media player の git リポジトリのクローンを作成しようとしていますが、SO の同様の質問に記載されているいくつかのヒントを試しても失敗し

ます。

gaurav@pruthi-linux:~/projects$ git clone git://git.videolan.org/vlc.git
Cloning into 'vlc'...
fatal: unable to connect to git.videolan.org:
git.videolan.org[0: 88.191.250.118]: errno=Connection timed out
git.videolan.org[1: 2a01:e0d:1:3:58bf:fa76:0:1]: errno=Network is unreachable

gaurav@pruthi-linux:~/projects$ git clone https://git.videolan.org/vlc.git
Cloning into 'vlc'...
fatal: https://git.videolan.org/vlc.git/info/refs?service=git-upload-pack not found: did you run git update-server-info on the server?

gaurav@pruthi-linux:~/projects$ git clone ssh://git.videolan.org/vlc.git
Cloning into 'vlc'...
ssh: connect to host git.videolan.org port 22: Network is unreachable
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

しかし、git.videolan.org はアクセス可能です

gaurav@pruthi-linux:~/projects$ ping git.videolan.org
PING albiero.videolan.org (88.191.250.118) 56(84) bytes of data.
64 bytes from albiero.videolan.org (88.191.250.118): icmp_req=1 ttl=45 time=301 ms
64 bytes from albiero.videolan.org (88.191.250.118): icmp_req=2 ttl=45 time=274 ms
64 bytes from albiero.videolan.org (88.191.250.118): icmp_req=3 ttl=45 time=260 ms
64 bytes from albiero.videolan.org (88.191.250.118): icmp_req=4 ttl=45 time=267 ms

--- albiero.videolan.org ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3002ms
rtt min/avg/max/mdev = 260.338/275.904/301.349/15.557 ms
4

1 に答える 1

2

それは私のために働いた。ネットワークの問題が発生した可能性があります。もう一度やり直してください。ファイアウォール、プロキシなどを確認してください。とにかく、ダウンロードが非常に遅く、レポがかなり大きいので、しばらくお待ちください。

編集:

公式のVideolan wikiによると、プロトコルとして HTTP を使用する公式リポジトリがあります。使用してみてください。このプロトコルとポートに対してファイアウォールが開かれている可能性があります。

git clone http://repo.or.cz/r/vlc.git
于 2013-11-06T09:29:05.613 に答える