git commit 시 user.email, user.name 이 설정되어 있지 않으면 에러가 발생한다. 이에 따라 git config 를 통해 설정이 필요하다. > git config --global user.email "you@example.com" > git config --global user.name "Your Name" [설정 후 파일로 저장] > git config credential.helper store [설정 후 임시로 저장, 별도 인자가 없을 경우 15분] > git config credential.helper cache > git config credential.helper 'cache --timeout=3600' [저장한 credential 삭제] > git config --uns..