이슈
Intellij 이용하여 clone, push, pull 명령어가 작동하지만 command line에서 해당 명령어들이 작동 안할경우 해결하는 방법을 소개하고자 한다.
필자의 경우 git clone xxx, pull xxx 하면, 해당 repository를 찾을 수 없는 에러 메시지만 보여 답답했다. intellij에서는 명령어가 실행이 되는데...
remote: Repository not found.
fatal: repository 'https://xxx.xxx.git/' not found
해결방법
git config --edit --system
helper = xxx 이 들어간 라인을 삭제 한다.
그리고 다시 해보면 된다.
'IT > git' 카테고리의 다른 글
GIT - Revert (0) | 2023.06.19 |
---|---|
GIT - pull 에러 잡기 (0) | 2023.06.18 |
GIT - Tag (0) | 2023.06.13 |
GIT - Status (0) | 2023.06.13 |
GIT - Stash (0) | 2023.06.13 |