Git

[Git] 현재 사용자 정보 확인 및 수정하기

O_Gyong 2023. 1. 30.

현재 사용자 정보 확인하기

git config --list

또는

git config -l

 

터미널에 해당 코드 입력 후 엔터를 누르면서 정보 확인.

정보 확인이 끝나면 q를 눌러서 탈출.


현재 사용자 이름 및 이메일 바로 확인하기

• 전역으로 사용하고 있는 사용자 이름 및 이메일

git config --global user.name

git config --global user.email

• 로컬로 사용하고 있는 사용자 이름 및 이메일

git config --local user.name

git config --local user.email

또는

git config user.name

git config user.email


현재 사용자 이름 및 이메일 수정하기

• 전역으로 사용하고 있는 사용자 이름 및 이메일

git config --global user.name "이름 입력"

git config --global user.email "이메일 입력"

• 로컬로 사용하고 있는 사용자 이름 및 이메일

git config --local user.name "이름 입력"

git config --local user.email "이메일 입력"


현재 사용자 이름 및 이메일  없애기

• 전역으로 사용하고 있는 사용자 이름 및 이메일

git config --unset --global user.name

git config --unset --global user.email

• 로컬로 사용하고 있는 사용자 이름 및 이메일

git config --unset --local user.name

git config --unset --local user.email

로컬 정보는 없애면 전역으로 사용하고 있는 값으로 적용된다.

'Git' 카테고리의 다른 글

[Git] Commit 기록 삭제하고 반영하기  (0) 2023.09.20
[Git] Window 환경에서 Git 설치하기  (0) 2023.05.06

댓글