Git Push ERROR: Repository not found

x·2023년 5월 10일
0

github

목록 보기
2/3

권한 문제인 경우
권한 write 이상으로 부여받기

원격 경로 문제인 경우 origin 제거 후 새로 등록
git remote rm origin
git remote add origin git@github.com:xxx/repo.git

안되면

github 프로필 -> settings -> personal access tokens -> Tokens(classic) -> generate new token -> classic -> 권한 체크하고 토큰 생성
https://velog.io/@samnaka/remote-Write-access-to-repository-not-granted.fatal-unable-to-access-The-requested-URL-returned-error-403

git remote set-url origin https://{github token}@github.com/{organizations}/{repo-name}

0개의 댓글