git remote 관련
October 17, 2022•26 words
git remote -v
# 변경하기
git remote set-url origin https://code.sdsdev.co.kr/bdportal/portal.git
# 추가하기
git remote add origin https://code.sdsdev.co.kr/bdportal/portal.git
# branch 동기화
git fetch -p origin
...
Read post