Programming/Dev Util Tips

[Git] Git Remote 변경

BadaGreen_Kim 2020. 1. 30. 16:34

깃 리모트 변경 하기

기존 리포지토리 깔끔하게 pull / push

1
2
3
4
git pull
git add .
git commit -"clean push"
git push
cs

기존 리포지토리 remote 제거

1
git remote remove origin
cs

새 리포지토리 remote 추가

1
git remote add origin https://github.com/계정/리포지토리
cs