1일차
Git 이란?
- 버전 관리 도구 (형상 관리 도구)
- 하나의 폴더 내에서 코드의 변경점을 기록하기 위해 git을 사용
<백업 + 변경점 기록>
GitHub란?
- 백업과 공유가 가능한 온라인 코드 저장소
- 백업 + 공유 = 협업이 가능!

window는 Git Bash에서 진행
$ git init Initialized empty Git repository in C:/폴더위치
git add . (또는 git add index.html)
git commit -m "메세지(변경사항 같은것들)"
아래 문구가 나오면 git config --global user.email "you@example.com" git config --global user.name "Your name" 한줄씩 작성후 enter git config --global user.email "본인 이메일" git config --global user.name "본인 네임"




