1-1.gitgnore 파일 생성
.cache .DS_Store node_modules dist
.gitgnore파일에 무시할 파일이나 폴더명을 적어 줍니다.
1-2.git 명령어 터미널에 입력(1)
$ git init $ git status $ git add . $ git status $ git commit -m "create project" $ git log
1-3.나의 Github에서 새로운 repository 생성
- 나의
Github로 이동 후Repositiries영역에서New클릭하여 생성repositiries name설정
Create repository클릭- 내가 새로 생성한
repository주소 복사
1-4.git 명령어 터미널에 입력(2)
git remote add origin https://github.com/JangJinWon/parcel-template-basic.git git push origin master
1-5.Github 저장소에 업로드된 파일 확인