버전관리시스템(Version Control System, VCS)의 한 종류
파일의 변화를 시간에 따라 추적하고 관리하는 소프트웨어
프로젝트의 이력을 가지고 있는 작업 공간
git --version // 버전 확인
git config user.name // 설정된 사용자 이름 확인
git config --global user.name // 사용자 이름 설정
git config user.email // 설정된 사용자 이메일 확인
git config --global user.email // 사용자 이메일 설정
git status // repository의 상태 확인
git init // 현재 위치에 repository 생성