0

私は以前、開発環境としてRuby on Rails使用するプロジェクトに取り組んでいました。Vagrantプロジェクトを完了した後、 のプロジェクトで作業を開始しましたJavaが、プロジェクトを自分のワークスペースに複製しようとすると、Git Bash コンソールで次のエラーが発生します。

git clone git@git.address.com:mari/project.git 
Cloning into 'project'

/usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:763:in 'initialize':     No route to host - connect(2) (Errno::EHOSUNREACH)
from /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:763:in 'open'

from /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:763:in 'block in connect'

from /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:55:in 'timeout'

from /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:100:in 'timeout'

from /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:763:in 'connect'

from /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:756:in 'do_start'

from /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:745:in 'start'

from /opt/git/gitlab-shell/lib/gitlab_net.rb:56:in 'get'
from /opt/git/gitlab-shell/lib/gitlab_net.rb:17:in 'allowed?'
from /opt/git/gitlab-shell/lib/gitlab_net.rb:51:in 'validate_access'
from /opt/git/gitlab-shell/lib/gitlab_net.rb:21:in 'exec'
from /opt/git/gitlab-shell/lib/gitlab_net.rb:16:in '<main>'

fatal: Could not read from remote repository.

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

注:この解決策 (リモート Git リポジトリの URI (URL) を変更する ) を試しましたが、うまくいきませんでした。何が起こっているのでしょうか?

編集: Windows を使用していますが、Vagrant で使用される VM は Linux です。

4

2 に答える 2

1

このようなgitリモートURLを試してください

   http://<username>@git.address.com/<path>.git
于 2013-09-11T14:41:11.300 に答える