내 경우에는 인텔이제이의 Git 기능을 사용해서 GitHub의 Organization의 Repository에 push를 하는 과정에서 "remote : Repository not found" 에러가 발생했다. CLI에서 git push를 할 때는 원격 저장소에 push가 문제 없이 잘 되는데, 인텔리제이를 통해서 push 할 때만 이 현상이 발생하니 인텔리제이가 뭔가 잘못하고 있는 것 같았다. 인텔리제이가 push 할 때 만들고 있는 명령어는 다음과 같았다. git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain origin refs/heads/master:master 이 ..