git remote ? 외부의 깃헙 저장소가 있는 url에 대한 alias을 만들어서 관리하기 위한 명령어
C:\...\coronaboard>git remote -v
origin https://github.com/inthyes/coronaboard.git (fetch)
origin https://github.com/inthyes/coronaboard.git (push)
git remote -v 명령어를 입력하면 origin이라는 alias를 가진 외부 저장소가 출력된다.
별도로 설정하지 않으면 origin으로 지정되며 이후 fork하는 저장소는 upstream으로 지정된다.
remote 명령어는 알아두면 유용하게 쓰인다.
원격 저장소를 삭제하고 새로운 저장소 clone을 원할 때에는 git remote remove [alias] 명령어를 수행하면 된다.
C:\...\coronaboard\coronaboard-web-V2>git remote -v
origin https://github.com/yjiq150/gatsby-starter-hello-world.git (fetch)
origin https://github.com/yjiq150/gatsby-starter-hello-world.git (push)
C:\...\coronaboard\coronaboard-web-V2>git remote remove origin
C:\...\coronaboard\coronaboard-web-V2>git remote -v
사라진것을 확인할 수 있다.
'web' 카테고리의 다른 글
[Node.js] NVM으로 노드 버전 변경하기 (0) | 2023.08.13 |
---|---|
[Node.js] npm과 npx는 뭐가 다른걸까? (0) | 2023.08.10 |
[Node.js] __dirname 사용법 (0) | 2023.08.04 |
[GIT] 커밋 메세지 규칙 (0) | 2023.07.31 |
undefined와 null의 차이점 (0) | 2023.07.30 |