투케이2K

113. (TWOK/ERROR) [Bitbucket/Git] 커밋 (commit) 에러 - fatal: unable to auto-detect email address 본문

투케이2K 에러관리

113. (TWOK/ERROR) [Bitbucket/Git] 커밋 (commit) 에러 - fatal: unable to auto-detect email address

투케이2K 2022. 10. 22. 21:09
반응형

[환경 설정 및 설명]

프로그램 : Bitbucket / Git

설 명 : 커밋 (commit) 에러 - fatal: unable to auto-detect email address

 

[에러 원인]

1. git config 설정에서 이메일 , 이름 값이 초기화 되어 발생하는 이슈

 

[해결 방법]

1. git config 에 user.email , user.name 추가 실시

 

# [git config list 확인 명령어]

$ git config --list



# [user.email 추가 명령어]

$ git config --global user.email "kgh@naver.com"



# [user.name 추가 명령어]

$ git config --global user.name = "TWOK"

 


반응형
Comments