이번 포스팅에서는 깃(Git)의 기본 명령어에 대하여 공부를 해보고자 한다. 로컬 저장소 생성 시 사용하는 명령어 git init: 직접 생성하는 명령어 git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/creamcream1217/hello-git.git git push -u origin main git clone: remote 저장소에서 복제하는 명령어 https://github.com/new 에서 github remote 저장소를 생성할 수 있다. git clone git status 파일 상태를 확인하는 명령어 git diff commit 된 ..