Suzie's Blog

[Git] 환경설정 (Git Configuration) - 사용자 등록하기 및 확인하기(global) 본문

개발/Git

[Git] 환경설정 (Git Configuration) - 사용자 등록하기 및 확인하기(global)

Iuna 2023. 4. 13. 11:17
반응형
SMALL

글로벌 사용자 등록하는 방법

git config --global user.name "사용자 이름"
git config --global user.email "이메일주소"

등록 후 확인하기

git config user.name
git config user.email
반응형
LIST