0
내 Vagrant 상자와 함께 SSH 에이전트 전달을 사용하고 있습니다. 내가 성공적으로 내 개인 저장소에 자식 복제를 수행 할 수있는이 올바르게 설정되어 다음과 같습니다작성자가 SSH 에이전트 전달을 통해 키 세트를 사용하지 않습니다.
$ git clone [email protected]:myorganisation/myrepo.git
Cloning into 'myrepo'...
이 저장소는 내 composer.json의 기능
:
{
"type": "vcs",
"url": "[email protected]:myorganisation/myrepo.git"
},
그러나 동일한 사용자로 composer update
을 실행하면 인증되지 않음을 나타내는 오류가 발생합니다.
The "https://api.github.com/repos/com:myorganisation/myrepo" file could not be downloaded (HTTP/1.1 404 Not Found)
어떻게 전달 키를 사용할 수 있습니까?
{
"type": "vcs",
"no-api": true,
"url": "[email protected]:myorganisation/myrepo.git"
}
: