처음 생성하므로 해당 부분 복사 후 터미널에서 한줄씩 실행
결과
git remote -v
기존 리포지토리 깔끔하게 pull / push
git pull
git add .
git commit -m "clean push"
git push
기존 리포지토리 remote 제거
git remote remove origin
수정 소스 폴터 터미널에 들어가서
-m 은 메세지, . 은 all
git pull origin main
git add .
git commit -m "second commit"
git push -u origin main