github의 종속 관계가 직접 있습니다. 내 저장소가 아니야. 기껏해야."mix.exs"에 github 종속성이있는 웹 사이트를 배포 할 수 없습니다.
defp deps do
[{:something123, git: "[email protected]:user123/something123.git"}
로컬 호스트에서 제대로 작동합니다. 그러나 서버를 배포 할 때 예외가 throw됩니다.
* Updating something123 ([email protected]:user123/something123.git)
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
** (Mix) Command "git --git-dir=.git fetch --force --quiet --progress" failed
어떤 권한이 있습니까? 다시 말하면, 저장소는 내 것이 아닙니다.
배포 할이 웹 사이트의 코드는 누군가의 저장소에도 있습니다. 지금까지 배포 한 유닛에 대해서는 github에서 종속성을 추가 한 것이 전부였습니다.
인가? –
@MBuhot, public – user7905648