다른 사용자로 일부 변경 사항을 커밋하려고하는데 유효한 이메일 주소가 없으며 다음 명령이 작동하지 않습니다.
git commit --author="john doe" -m "some fix"
fatal: No existing author found with 'john doe'
이메일 주소로만 커밋하려고 할 때 동일한 문제가 있습니다.
git commit --author="john@doe.com" -m "some fix"
fatal: No existing author found with 'john@doe.com'
커밋 명령에 대한 GIT 매뉴얼 페이지에서
standard A U Thor <author@example.com> format
--author 옵션의 경우.
이 형식은 어디에 정의되어 있습니까? A와 U는 무엇을 의미합니까? 사용자 이름 만 또는 이메일 만있는 다른 사용자를 어떻게 커밋합니까?