1. 깃허브 로그인/레포지토리 생성


GitHub 사용하기

login-lecture 이름의 새 레포지토리를 만든다.

Build software better, together

2. 깃 초기 설정


git init으로 깃을 생성한다.

README.md와 .gitignore 파일을 생성한다.

README.md


# login-lecture

Node.js 백엔드 수업

.gitignore


**node_modules

3. 깃 업로드


git add . 로 파일을 커밋에 올린 뒤

git commit -m “git 초기화” 로 커밋을 추가한다.