https://education.github.com/git-cheat-sheet-education.pdfSetup & Initgit init: 기존 디렉터리를 Git 리포지토리로 초기화하기git init을 하면, 해당 폴더에 .git 파일이 생성됨git clone [url]: 전체 리포지토리 가져오기Stage & Snapshotgit status: 수정된 파일 목록 확인git add [file]: 워킹 디렉토리의 변경 사항을 스테이징 영역에 올림git reset [file]: 워킹 디렉토리의 변경 사항을 유지하면서 파일 스테이징 해제git diff: 워킹 디렉토리의 변경사항을 보여줌git diff --staged: 스테이징된 파일과 마지막 커밋의 차이를 보여줌git commit -m "[descripti..