현재 설정 확인하기
git config --list
신규 설정하는 방법
git config --global user.name "웹학교"
git config --global user.email "hangulok@naver.com"
git config 설정 내용 일부 삭제하기
git config --unset user.name
git config --unset user.email
global로 설정된 경우
git config --unset --global user.name
git config --unset --global user.email
등록된 댓글이 없습니다.