728x90
git init //지금 파일이랑 깃이랑 연결 할 꺼라고 알려주기
git branch -m master main //마스터 브렌치 메인으로 변경하기
git add .
git commit -m "커밋 메세지"
git remote add origin "레포 주소" //깃 클론 할때 가져오는 레포 주소
git push origin main //main에 푸쉬
기존 리포지토리 remote 제거
git remote remove origin
새 리포지토리 remote 추가
git remote add origin https://github.com/계정/리포지토리
git-lfs 오류 해결하기
brew install git-lfs
-> 깃허브는 용량이 너무 큰 파일을 올리는게 안되어있어서 맥에서는 git-lfs 가 필요하다 brew를 통해서 설치 해야 push가 가능하다
728x90