본문 바로가기

Development/Git

[Git] Error: Repository not found

728x90

git init을 통해서 .git 폴더를 만들고 초기화까지 했습니다.

$ git init

 

그리고 나서 순차적으로 git에 레포지터리를 push 하는 과정까지 진행했습니다. 

$ git add .
$ git commit -m "first commit"
$ git branch -M main
$ git remote origin add https://github.com/<id>/<project name>.git
$ git push -u origin main

하지만 git push 과정에서 에러가 발생하였습니다.

remote: Repository not found
fatal: repository '<project name>.git/' not found

다음의 블로그에서 해결책을 얻었습니다.

recoveryman.tistory.com/392

 

[깃허브(Github)] 21. remote: Permission to 에러

remote: Permission to gitest01/gitest01.github.io.git denied to xxxx. fatal: unable to access 'https://github.com/yyyy/yyyy.github.io/': The requested URL returned error: 403 remote: Permission to~~..

recoveryman.tistory.com

A 라는 github 아이디로 '최초' 글로벌 유저 등록을 했고, 나중에 B 라는 아이디로 다시 글로벌 유저를 등록해서 B 아이디로 push를 하려고 할때, 그 push의 시점은 여전히 A라는 github 아이디를 찾고 있었습니다.

자격 증명 관리자

 

git:https://github.com에서 편집을 눌러서 github 아이디와 비밀번호를 push 하려는 아이디로 바꿔주면 해결됩니다.

 

728x90