본문 바로가기
Study/[Error]

[vscode-git연동] git 에서 'user.name'및 'user.email'을 구성하세요

by Nameless 2021. 8. 28.

오류 화면

vscode랑 git 연동 후 파일을 commit 할 때 나오는 오류이다.

사용자 정보 설정을 하지 않아 발생하는 오류라는데

난 이미 해놨음에도 불구하고 갑자기 오류가 떴다ㅠㅠ

 

해결방법은 아래의 코드를 터미널에 입력해주면 된다.

$git config --global user.name "user.name"
$git config --global user.email "user.email"

 

댓글