깃(GIt) 사용시 현재 로컬 저장소(local repository)에 연결되어 있는 원격 저장소(remote repository)를 연결을 끊는 방법
먼저 git remote -v
명령어를 사용하여 현재 연결되어 있는 원격 레파지토리를 확인합니다.
$ git remote -v origin https://github.com/XXX/XXX.git (fetch) origin https://github.com/XXX/XXX.git (push)
github 원격 저장소와 연결되어 있는 것을 확인 하실 수 있습니다.
git remote remove {name}
옵션을 사용해 주면 연결되어 있는 저장소를 간단하게 끊을 수 있습니다.
$ git remote remove origin
$ git remote -v