터미널에서 Git 명령어로 remote 저장소(repository)의 연결을 해제하거나 등록하는 방법을 소개합니다.
1. 원격 저장소 리스트 확인
git remote -v
는 현재 git에 등록된 원격 저장소 리스트를 보여줍니다.
$ git remote -v
origin git@github.com:codechacha/androidx-kotlin-recyclerview.git (fetch)
origin git@github.com:codechacha/androidx-kotlin-recyclerview.git (push)
2. 저장소 리스트에서 원격 저장소 삭제
git remote remove <name>
명령어는 원격 저장소를 git의 설정에서 삭제합니다.
$ git remote remove origin
다음 명령어로 remote 리스트를 확인해보면 origin은 삭제되어, 리스트에서 출력되지 않습니다.
$ git remote -v
3. 원격 저장소 추가
git remote add <name> <url>
명령어는 url으로 원격 저장소를 등록합니다.
$ git remote add origin git@github.com:codechacha/androidx-kotlin-recyclerview.git
원격 저장소 목록을 확인해보면 origin이 원격 저장소로 등록된 것을 확인할 수 있습니다.
$ git remote -v
origin git@github.com:codechacha/androidx-kotlin-recyclerview.git (fetch)
origin git@github.com:codechacha/androidx-kotlin-recyclerview.git (push)
관련 문서
Loading script...
Related Posts
- Git Alias - 단축/커스텀 명령어 설정
- Git에서 .gitignore 설정 방법
- git clone 명령어로 원격 저장소를 로컬에 저장
- Git - 두개 commit의 차이점 확인 (코드 차이, 파일 차이)
- Git - 브랜치 이름 변경하는 방법
- Git - 특정 commit 삭제, 되돌리기 (reset, revert)
- Git - 리모트 브랜치 생성과 삭제
- GitHub에 ssh-key 등록 방법 (Windows10)
- git log - 특정 author의 commit 리스트만 출력
- git log - commit 리스트 간단하게 출력 (pretty)
- Git - revert 명령어(commit 되돌리기)
- git diff 명령어로 파일 변경 내용 확인
- git show 명령어로 commit 정보 확인
- Git - 브랜치 생성, 삭제, 체크아웃
- Git - 원격 저장소(remote) 추가, 해제
- Git - Staging 영역의 파일을 Untracked로 변경
- Git - commit log에서 수정된 파일 목록 보기
- Git - 마지막 commit 수정, 삭제 방법 (reset, amend 명령어)
- git commit message 에디터 변경 (Vim, Sublime, Atom, VSCode)
- Git - blame 명령어, 코드 수정한 사람과 Commit 찾기
- Git - Patch 파일 만들기 & 적용하기