-
git push 오류 (url, ssh)error handling 2022. 2. 25. 11:41반응형
코드를 수정하고 push하는 과정에서 fatal: Could not read from remote repository. 라는 에러가 발생했다.
이런 경우에는 http URL로 ssl URL을 변경하여 해결하면 된다.
> git remote set-url origin https://github.com/<user_name>/<repo_name>.git
그렇게 되면 git push에서 비밀번호를 묻는데, 깃헙에서 access tokens에서 생성한 토큰이 비밀번호가 된다.
반응형'error handling' 카테고리의 다른 글
배포 단계에서 발견한 에러(This XML file does not appear...) (0) 2022.04.18 [ERROR] You are running `create-react-app` 4.0.3, which is behind the latest release (0) 2022.03.25 Headers에서 Content-Type과 Accept의 차이(Feat. OAuth 2.0) (0) 2022.03.19 error: failed to push some refs to (feat. git push 에러) (0) 2022.02.28 TypeError: Assignment to constant variable(feat. 변수 선언의 중요성) (0) 2022.02.25