git remote -v
origin (기존 원격 저장소 url) (fetch)
origin (기존 원격 저장소 url) (push)
이렇게 두개가 나온다.
git remote add second 두번째저장소URL
origin (기존 원격 저장소 url) (fetch)
origin (기존 원격 저장소 url) (push)
second (두번째저장소URL) (fetch)
second (두번째저장소URL) (push)
추가하고 git remote -v
명령어를 치면
4개가 나온다.
git push second dev
git remote rm second
추가하고 git remote -v
명령어를 치면
1번처럼 2개가 나온다.