git init
git add .
git config --global user.email "이메일주소"
git config --global user.name "이름"
git commit -m "메시지 내용"
git rm --cached node_modules -r 깃에서 삭제
git push -f origin master 강제로 덮어씌우는 것 ... 오류 떠서 귀찮을 때 그냥 덮어씌우기로 해결할 수 있으나 수정사항이 깃 저장소와 깃허브가 일치하지 않으면 날라가는 부분이 발생할 수 있음
error: failed to push some refs to 깃허브에서 수정사항이 있어서 깃허브와 깃저장소가 일치하지 않으면 발생
해결법은 깃허브에서 다시 내려받아 깃저장소와 일치하게 바꾸는거라는듯
git init
git remote add origin 주소
git branch -m "branch-name"
git add . && git commit -m "message" && git push origin branch-name
git remote -v 연결 주소 확인
git clone [ 주소 ] [ 새로생성할 폴더명 ]