1. git이란?
분산 버전 관리 시스템
2. 설치 확인
cmd창에
git --viersion
버전이 나오면 설치되어 있는 것
안나오면 3번으로 설치후 다시 확인!
3. Download for Window 버튼 눌려서 다운
4. git init
git repository (저장소) 생성
왼쪽에 git에 들어갈 파일들 1K+개 있음
gitignore 설정
gitignore 설정하면 git status 쳤을때 해당 디렉토리가 없어야함
Wroking Directory -> Staging Area(git에만 있는 개념으로 repository로 이동 전 대기장소)
-> Git repository(local) ->Git repository(remote)
git status
변경된 파일 목록 확인
git add . //Staging Area에 넣는 명령어 .은 모든파일을 다 넣는단 의미
vscode에서는 왼쪽 changes에 +버튼을 눌려도 됨.
git rm --cached node_modules -r //add로 Staging Area에 잘못넣은것 있으면 삭제
git commit -m " 메세지 "
이후 git status 하면 아무것도 안뜸