git init

# 버전에 포함되는 제작자에 대한 정보 설정 
git config --global user.name 'user name'
git config --global user.email 'user email'

# stage 단계의 파일로 변경 (commit 대기 상태) 
git add file.file 

# file 상태 확인 
git staus 

# commit 
git commit -m 'commit msg'

Untitled

Untitled

git add의 원리

objects 파일명의 원리

commit 의 원리