로컬 저장소(local repository)와 원격 저장소(remote repository)를 연결하기 위해 보통 git clone 명령어를 사용한다. 이렇게 연결된 로컬 저장소와 원격 저장소의 연결을 끊는 방법에 대해 알아보자. 현재 연결되어 있는 repository 확인하기 git remote -v 위의 명령어를 사용해 현재 연결되어 있는 원격 저장소를 확인할 수 있다. origin https://github.com/Github_Name/Repository_Name.git (fetch) origin https://github.com/Github_Name/Repository_Name.git (push) Repository_Name는 현재 연결되어 있는 원격 저장소의 이름이며, Github_Name는 나..