git remote add origin https://github.com/helloshopang/test2.git # rm -rf .git 깃 아예 다삭제 # git remote -v 리모트 보는거 # git remote add origin ~~주소 오리진을 새로 설정함 뭐 하나만 씀 보통은.. # git branch 현재 브랜치 목록 보여주는거 # git branch main main이라는 브랜치 생성해주는거 # git branch -d master master이라는 브랜치 삭제해주는거. # git checkout 브랜치명 브랜치명 바꾸기 # git pull origin main main이름으로 리포지토리 통째로 가져오는거 # git push origin main main이란 브랜치로 코드 넣는거. a..