[git] 원격저장소 연결 설정 및 해제
1. 원격저장소 연결 정보 확인 # git remote -v origin https://github.com/[GitName]/[RepositoryName].git (fetch) origin https://github.com/[GitName]/[RepositoryName].git (push) 2. 원격저장소 연결 해제 # git remote remove origin 3. 원격저장소 연결 설정 # git remote add origin https://github.com/[GitName]/[RepositoryName].git * origin : 원격지
프로그래밍/Git
2021. 3. 23. 11:39