📁ETC./⚒️ Tool

[Github] remote: Repository not found. 에러 해결

yujch 2024. 8. 16. 03:13
반응형

Fetching origin

remote: Repository not found.

fatal: repository 'https://github.com/{레포지토리 경로}.git/' not found

error: Could not fetch origin


레포지토리와 연결을 끊고 다시 연결을 해줘야함.

#레포지토리와 연결 해제
git remote remove origin

#재연결
git remote add origin https://{깃허브 유저명}:{깃허브 ssh key}@github.com/{레포지토리 경로}.git

 

반응형