컴공생의 다이어리

[Git] 깃 사용자(user) 이름(name) 및 이메일(email) 확인, 변경, 삭제 본문

Development/Git

[Git] 깃 사용자(user) 이름(name) 및 이메일(email) 확인, 변경, 삭제

컴공 K 2021. 9. 25. 00:01

깃 사용자(user) 이름(name) 및 이메일(email) 확인

git config user.name	# 이름 확인
git config user.email	# 이메일 확인

 

 

깃 사용자(user) 이름(name) 및 이메일(email) 변경

git config --gloabal user.name	"홍길동"	# 이름 변경
git config --gloabla user.email	"gildongHong@test.com"	# 이메일 변경

 

 

깃 사용자(user) 이름(name) 및 이메일(email) 삭제

# 설정된 사용자를 지울 때,
git config --unset user.name	# 이름 삭제
git config --unset user.email	# 이메일 삭제

# gloabal로 설정된 config 사용자를 지울 경우,
git config --unset --global user.name
git config --unset --global user.email

 

 

https://webisfree.com/2018-07-26/git-config-%EC%84%A4%EC%A0%95-%ED%99%95%EC%9D%B8-%EB%B0%8F-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0

 

git config 설정 확인 및 변경하기

git을 사용하는 경우 config 설정에 대한 내용을 볼 필요가 있습니다. 예를들어 사용자 이름이나 email 등을 확인할 수 도 있겠죠

webisfree.com

 

728x90
Comments