본문 바로가기

Git & Github

git config # --list # user.name # user.email

728x90
반응형

현재 설정된 상태 보기

git config -l
git config --list

 

user name 설정 (global)

git config --global user.name "hwan"

 

user email 설정 (global)

git config --global user.email "your-mail@your.domain"

 

확인

git config user.name
git config user.email

 

728x90
반응형