git 원격지 주소 변경

$git remote -v  
origin  http://xxxxxxxxxxxen.git (fetch)
origin  http://xxxxxxxxxxxen.git (push)

# 변경할 주소
$git remote set-url origin http://xxxxxxxxxx.git
$git remote -v 
변경된 git 주소 

Scroll to Top