GitHub error: GH007: Your push would publish a private email address.
문제
GitHub에 새 리포지토리를 만들고 로컬 리포지토리를 커밋하려고 시도했는데 수수께끼 오류가 발생했습니다.
작업 내용
GitHub 사이트에 리포지토리를 만든 후 로컬에서 아래와 같이 리포지토리 작성, 커밋, 푸시를 실행.
git init
git remote add origin [email protected]:username/reponame.git
git add .
git commit -m “initial commit”
git push origin master
결과, 다음 오류가 발생했습니다.
remote: error: GH007: Your push would publish a private email address.
remote: You can make your email public or disable this protection by visiting:
remote: http://github.com/settings/emails
원인
아래 조건에서 오류가 발생하는 것 같습니다. 목적은 의도하지 않은 이메일 주소 공개를 방지하는 것입니다.
GitHub 사이트에 리포지토리를 만든 후 로컬에서 아래와 같이 리포지토리 작성, 커밋, 푸시를 실행.
git init
git remote add origin [email protected]:username/reponame.git
git add .
git commit -m “initial commit”
git push origin master
결과, 다음 오류가 발생했습니다.
remote: error: GH007: Your push would publish a private email address.
remote: You can make your email public or disable this protection by visiting:
remote: http://github.com/settings/emails
원인
아래 조건에서 오류가 발생하는 것 같습니다. 목적은 의도하지 않은 이메일 주소 공개를 방지하는 것입니다.
해결책
해결 방법은 간단하고 오류에 설명된 대로 이메일 주소의 공개 설정을 변경하기만 하면 됩니다.
이메일 주소의 공개 설정 변경
계정 설정 페이지 을 열고 아래의 체크를 해제합니다.
Git의 Author 설정 변경은 GitHub의 이 기사 등을 참조하십시오.
Reference
이 문제에 관하여(GitHub error: GH007: Your push would publish a private email address.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kiri-i/items/912a4226c82be278a390텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)