Git의 공식 명칭은 분산 버전 관리 시스템(VCS: Version Control System)이다.
즉, 프로젝트 파일의 변경 사항을 추적하는 시스템이다.
GitHub은 Git을 이용해 버전 관리를 한 프로젝트들을 관리하게 해주는 호스팅 서비스이다.

git init git 시작 (initialize 초기화하다)git status git 상태 확인 (변경사항 추적) - 장바구니git add 파일 수정 이력 기록 준비 - 구매할 상품을 장바구니에 담음git commit 파일 수정 이력 기록 - 구매하면 구매내역이 남음git commit -m "메세지" commit message 기록git log commit 이력 보기 (구매내역 모두 보기)git remote add origin 레파지토리 주소.git origin을 repository 주소로 설정git remote --v origin 주소 확인git branch 현재 생성되어 있는 branch 확인git branch 브랜치이름 branch 생성git checkout 브랜치이름 branch로 이동git push origin 브랜치이름 branch에 git 업로드
origin: remote repository의 이름

git clone 레파지토리 주소.git github에서 로컬로 복제해오기git pull origin master github master에서 파일/폴더 불러오기git checkout master 로컬에서 master branch로 이동