*** Please tell me who you are.

Feb 06, 2024
*** Please tell me who you are.
notion image
커밋을 할 때 사용자의 정보가 설정되지 않았을 때 발생
Git은 각 커밋에 대한 작성자 정보를 필요로 함
에러 메시지에서 안내하는 대로, 사용자 정보를 설정해야 함
 
git config --global user.email "you@example.com" git config --global user.name "Your Name"
특정 저장소에서만 사용자 정보를 설정하고 싶다면 --global 옵션을 빼고 명령어 실행
git config user.email "you@example.com" git config user.name "Your Name"
이렇게 설정하면 해당 저장소에서만 해당 사용자 정보가 적용
이후에는 다시 커밋 시도하면 됨
Share article
RSSPowered by inblog