참고 : http://rogerdudler.github.io/git-guide/index.ko.html 새 저장소 만들기 1. 폴더 생성 2. 폴더 내에서 아래 명령 실행 git init 저장소 받아오기 (clone) git clone 경로 ※ 작업의 흐름 Working directory : 실제 파일들 Index : Staging area (준비 영역) HEAD : 최종 확정본 (commit한 것들) Staging area에 추가 git add 파일명 모두 추가 git add * git add --all Commit (HEAD에 반영) git commit -m "커밋 메시지" Push (발행, 원격 저장소에 올리기) git push origin master git push origin 브랜치명 ※ 작업..