- 사용목적 git을 사용하는 경우 config 설정에 대한 내용을 확인하거나 변경해서 사용할 필요가 있음 예를 들면, 협업을 위해서 git을 사용하는데, 사용자명(user.name), 사용자 이메일(user.email)등의 내용을 변경해서 commit 및 push를 하는 경우 등이 있을 것 1. git config 확인 git config --list 2. config 변경 [예시] user.email, user.name 변경 2.1. 설정된 user.name, user.email이 없을 때, 2.1.1. 지역 설정 git config user.name "유저이름" git config user.email "유저이메일" //사용예시 git config user.name "lim" git config us..