개발관련/Git

[오류] git : fatal : Could not read from remote repository.

Rateye 2021. 7. 21. 10:57
728x90
반응형
질문 : git : fatal : 원격 저장소에서 읽을 수 없습니다.

내 사이트를 관리하기 위해 http://danielmiessler.com/study/git/#website 에서 git을 설정하려고합니다.

지침의 마지막 단계에 도달했습니다. git push website + master : refs / heads / master

win7에서 git ming32 명령 줄을 사용하여 작업하고 있습니다.

$ git push website +master:refs/heads/master
Bill@***.com's password:
Connection closed by 198.91.80.3
fatal: Could not read from remote repository.

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

여기서 한 가지 문제는 프로그램이 Bill@***.com을 찾고 있다는 것입니다. ssh를 통해 내 사이트에 연결할 때 다른 사용자 이름 ( 'abc'라고 말할 수 있음)이 있습니다. 그래서 아마도 이것은 abc@***.com이어야합니다. 그렇다면 이것을 변경하는 방법을 모르거나 별칭으로 푸시 할 수 있는지

답변

SSH가 원격 URL의 일부로 원격 시스템에 보내야하는 사용자 이름을 지정할 수 있습니다. 원격 호스트 이름 앞에 사용자 이름과 @

git remote set-url website abc@***.com:path/to/repo
출처 : https://stackoverflow.com/questions/13509293/git-fatal-could-not-read-from-remote-repository
728x90
반응형