기타/GIT

[GIT] GIT사용자 정보 확인

창수씨 2022. 9. 20. 01:40
반응형

1. 조회

#git 유저명 확인
git config user.name

#git 유저 이메일 확인
git config user.email

2. 수정

#변경할 유저 이름
git config --global user.name 변경할이름

#변경할 유저 메일
git config --global user.name 변경할메일

 

반응형