[Github] 계정 명령어

yeolife ㅣ 2023. 7. 17. 20:22

계정 조회

현재 계정 이름 조회하기

git config user.name

 

현재 계정 이메일 조회하기

git config user.email

 

Git 설정 정보 조회하기

  • 전역 설정, 로컬 저장소 설정, 시스템 설정 등
git config --list

 

계정 관리

계정 이름 설정하기

git config --global user.name [이름]

 

계정 이메일 설정하기

git config --global user.email [이메일]

 

계정 이름 삭제하기

git config --unset user.name

 

계정 이메일 삭제하기

git config --unset user.email

 

전역 계정 이름 삭제하기

git config --unset --global user.name

 

전역 계정 이메일을 삭제하기

git config --unset --global user.email

 

다른 관련 명령어

⚡ 저장소 명령어 보러가기

📁 작업 영역 명령어 보러가기

📌 커밋 명령어 보러가기

🧑‍💻 브랜치 명령어 보러가기