1. 터미널로 원하는 작업 디렉토리로 이동 혹은 생성 ex) c:\test cd c:\test # cd c: && mkdir test (폴더 생성 시) 2. 로컬 저장소 생성 git init # Initialized empty Git repository in C:/test/.git/ 3. 추가 설정: 사용자 정보 등록 git config --global user.name t-shaped-person git config --global user.email kucira00@google.com 4. 추가 설정: 편집기 등록 git config --global core.editor vim # 사용자 기호에 따라 설정할 것 ex) vim 5. 설정 정보 확인 git config --global --list #gi..