자주 쓰는 Git 명령어를 모아보자! 명령어 설명은 천천히 추가하자! git init git clone [remote_repository address] [directory_name] git status git add git commit -m -a --amend git log -stat -p git diff git reset --hard --soft --mixed [version] git revert [version] git branch [branch_name] git branch -r : 원격저장소 branch 리스트 보기 git checkout [branch_name] git checkout -t [원격저장소 branch 이름] : 로컬의 동일한 이름의 branch를 생성하면서 해당 branch로 체..