2013-02-15 2 views
0

Mercurial을 사용하여 소스 코드를 다운로드하려면 어떻게해야합니까? 나는 http://kenai.com/projects/javaee-patterns/sources/hg/show/AOPandJavaEE에서 근원을 얻는 것을 흥미있다. 나는 의욕을 설치, 나는 hg clone https://hg.kenai.com/hg/javaee-patterns~hg 시도했지만 나는 다음과 같은 오류 있어요 :http://kenai.com에서 소스를 다운로드하려면 어떻게해야합니까?

abort: error: A connection attempt failed because the connected party did not pr 
operly respond after a period of time, or established connection failed because 
connected host has failed to respond 

답변

1

나를 위해 성공적으로 복제하는 것 :

$ hg clone https://hg.kenai.com/hg/javaee-patterns~hg 
warning: hg.kenai.com certificate with fingerprint 9c:f6:c3:1f:14:bc:98:82:de:2a:5b:6e:d2:ce:61:5d:95:e1:65:a5 not verified (check hostfingerprints or web.cacerts config setting) 
destination directory: javaee-patterns~hg 
requesting all changes 
adding changesets 
adding manifests 
adding file changes 
added 465 changesets with 3698 changes to 2360 files (+1 heads) 
updating to branch default 
2064 files updated, 0 files merged, 0 files removed, 0 files unresolved 

귀하의 오류 메시지가 네트워크 연결 오류가 발생하는 것처럼 보이게을 , 그러나 그것은 당신의 인터넷 연결과 관련이있을 가능성이 더 큽니다.

hg pull -r 1 https://hg.kenai.com/hg/javaee-patterns~hg 다음에 hg pull -r 1 https://hg.kenai.com/hg/javaee-patterns~hg을 시도해 볼 수는 있지만 처음 다운로드 할 때 시간이 초과 된 경우에만 도움이됩니다. 처음 연결하는 동안 시간이 초과됩니다.

계정을 만들고 로그인하면 더 튼튼한 ssh URL이 표시됩니다.

+0

Ry4an, 감사합니다. 당신 말이 맞아요. 내 개인용 컴퓨터에서 코드를 다운로드 할 수있었습니다. – Demetrio

관련 문제