git - How to download gitorious.org file? -
i wanna download files gitorious.org (https://gitorious.org/sitara-bootcamp/meta-custom)
use git clone command , following error message...
know how solve issue?
sitara@ubuntu:~/tisdk/sources$ git clone git://gitorious.org/sitara-bootcamp/meta-custom.git -b amsdk-06.00.00.00 cloning 'meta-custom'... fatal: unable connect gitorious.org: gitorious.org[0: 64.13.172.37]: errno=connection refused gitorious.org[1: 2a02:c0:1014::1]: errno=network unreachable
gitorious doesn't seem expose repo via git://
protocol, can download via http:
mureinik@computer ~/src/git $ git clone http://gitorious.org/sitara-bootcamp/meta-custom.git -b amsdk-06.00.00.00 cloning 'meta-custom'... remote: counting objects: 70, done. remote: compressing objects: 100% (57/57), done. remote: total 70 (delta 21), reused 0 (delta 0) unpacking objects: 100% (70/70), done. checking connectivity... done.
Comments
Post a Comment