VSCode 터미널 에서만 remote: Repository not found 이런 에러가 발생하기 시작했습니다.
구글링 하던 중 비슷한 문제를 공유한 사례가 있어 적용해 봅니다.
remote: Repository not found (only on VSCode
https://github.com/microsoft/vscode-pull-request-github/issues/3109#issuecomment-1105227271
준비하기
cd /path/to/your/repo
nano config
확인해보면 아래와 같을 겁니다.
[remote "origin"]
url = https://github.com/username/repo.git
아래와 같이 변경합니다.
[remote "origin"]
url = https://<username>:<personalToken>@github.com/username/repo.git
정상작동 합니다!
즐겁게 읽었습니다. 유용한 정보 감사합니다.