범위 #3.0 CLI log, commit, push #3.1 Checkout and Hard Reset #3.2 Mixed Reset #3.3 Soft Reset #3.4 Checkout Branches #3.5 Amending Commits and Ignoring Files #3.7 Clone git log commit 이력 보기 q 종료 git add . 현재 폴더에 있는 모든 파일을 stage 영역에 추가하기 git commit -m "" git에 commit 하기 git push origin main github에 push하기 git checkout 'commitNumber' 원하는 버전으로 돌아가기 git checkout main 최신 상태로 돌아가기 git reset --hard HEAD^ ..