반응형
✔️ 에러 코드
git push ssh: connect to host github.com port 22: Connection timed out
✔️ 해결 방법
1. 현재 git remote 연결 주소를 확인한다.
git remote -v
아래처럼 나온다.
origin git@gitlab.com:프로젝트 경로/test.git (fetch)
origin git@gitlab.com:프로젝트 경로/test.git (push)
2. git remote url을 변경한다.
git remote set-url origin https://gitlab.com/프로젝트 경로/test.git
3. git push
git push origin
😃 잘못된 개념 전달이 있다면 댓글 부탁드립니다. 저의 성장에 큰 도움이 됩니다🤓
반응형
'❗️Error' 카테고리의 다른 글
Connection to localhost:5432 refused. (0) | 2024.04.15 |
---|---|
적절하지 않은 스크롤 이동되는 에러 해결하기 (0) | 2024.03.28 |