hsunny study blog

원격(remote)저장소 확인하기 본문

programming/GIT

원격(remote)저장소 확인하기

헤써니 2019. 11. 12. 11:50

git remote 명령어를 사용하면 현재 프로젝트에 저장된 리모트 저장소들을 모두 확인할 수 있습니다.

-v 옵션을 주면 단축이름과 URL을 함께 확인할 수 있습니다.

➜  ddunny.github.io git:(master) git remote
origin
➜  ddunny.github.io git:(master) git remote -v
origin  https://github.com/ddunny/ddunny.github.io.git (fetch)
origin  https://github.com/ddunny/ddunny.github.io.git (push)

 

'programming > GIT' 카테고리의 다른 글

원격브랜치 가져오기  (0) 2020.12.29
git stash 사용하기  (0) 2020.12.28
commit 되돌리기  (0) 2019.11.24
웹서비스 배포를 위한 서버 git 설정  (0) 2019.03.22