Git pull, push, clone이 명령어로 안될 때
이슈
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 이 들어간 라인을 삭제 한다.
그리고 다시 해보면 된다.