본문 바로가기
Linux & GIT

Git remote 명령어

by 누워서 코딩 2019. 6. 5.

git remote명령어란?

remote repository를 확인하기 위한 명령어,

"$git remote" 실행시 현재 remote repository의 단축이름을 보여준다.

일반적으로 "origin"으로 표기된다.

 

option

-v

 

remote 단축이름과 함께, 

remote repository의 주소를 보여준다.

 

remote repository 추가하기

 

working directory에 새로운 remote repository를 추가할 수 있다.

 

git remote add <단축이름> <url>

 

e.g.,

"ess_origin" 단축이름과 함께 

"essgit@srv-kr-git01.com:/ess_project.git" 추가할 경우

 

git remote add ess_origin essgit@srv-kr-git01.com:/ess_project.git

 

댓글