Solution/오류해결
[Sourcetree/git] fatal: name consists only of disallowed characters:
zeroco
2022. 7. 1. 22:26
728x90
커밋치면 나오는 에러해결법
아마 이름이 없을 거임. 영어잘읽어보면 뭔소린지 알 수 있음.. 소스트리 터미널 열어서 확인해보자
git config --list
user.email , user.name 중 둘다 없을 수 도 있고, name 사라졌을수도..
git config --global user.email "이메일"
git config --global user.name "이름"
해결.
728x90