원격저장소 수정

    [Git] git remote, 원격 저장소 확인, 추가, 수정, 삭제

    지금 내 로컬저장소와 연결된 저장소를 확인하고 싶다면 git remote 저장소 url주소도 같이 보고 싶다면 git remote -v upstream이라는 이름으로 https://github.com/soosue/test 저장소를 연결하고 싶다면 git remote add upstream https://github.com/soosue/test upstream으로 연결된 저장소를 upstream2라는 이름으로 바꾸고 싶다면 git remote upstream upstream2 upstream2로 연결된 저장소를 지우고 싶다면 git remote remove upstream2