[Github]fatal:remote error:You can't push to git 해결 방법

1067 단어
branch가 정확한 상황에서
왠지 모르게 push에 자꾸 나타나요.
fatal: remote error:
You can't push to git://github.com/user_name/user_repo.git
Use [email protected]:user_name/user_repo.git
에 대한 힌트,
해결 방법:

$ git remote rm origin $ git remote add origin git@github.com:user_name/user_repo.git

$ git push origin
ok!
고인의 팟캐스트를 통해 원인을 찾았다.
만약에 git clone에 쓸 때는...git://github.com:xx/xxx.git형식, 그러면 이 문제가 발생합니다. 왜냐하면 이 프로토콜은push를 지원하지 않기 때문입니다.
$git clone으로[email protected]:lujinjianst/myNCCL.git
git push를 사용할 수 있습니다.

좋은 웹페이지 즐겨찾기