참조링크 https://2hyes.tistory.com/91 |
- git 설치 링크 https://git-scm.com/downloads
- github에서 생성한 repository 주소를 복사하여 메모장에 준비해 두자
- github에 업로드 진행 할 프로젝트 마우스 우클릭 > Git Bash Here
- Git Cmd 창이 뜨면 초기 설정을 아래 참조 이미지 순으로 진행
git config --global user.name "github name" git config --global user.email "github email" git init git add . git commit -m "저장코멘트" git remote add origin https://github.com/repository주소.git git push -u origin master |