개발/git

(git) 2 - github 프로젝트 올리기

개발하는 인사담당자 2024. 3. 15. 15:44

git init
git remote add origin 레파지토리 주소

git add . (전체 추가하기)

git commit -m "커밋메세지 작성"
git push origin master

※ origin 삭제
git remote remove origin