1. $git config 명령어 $git config --list 명령어를 통해 자신이 설정한 config 값을 볼 수 있다. 설치하면서 했던 [user.name]과 [user.email]확인 가능. 2. git config 설정 변경 ( user.name 과 user.email 를 예시로) 2-1. 아직 초기 설정을 안했을 경우 ($ git config --global user.name 등등) 지역(local) 설정 $ git config user.name "이름" $ git config user.email "이메일@주소" 지역 설정인 경우 cd 명령어를 통해 .git이 저장된 디렉토리로 이동 후에 명령어를 입력해야 한다. 전역(global) 설정 $ git config --global user.na..