하위 디렉토리의 리포지토리에 대한 Git 구성 user.email
~/.gitconfig
~/PersonalProjects/
~/CompanyAbc/.gitconfig
~/CompanyMno/.gitconfig
물론 기본 구성을 다음과 같이 구성했습니다.
user@mymac ~/ $ git config user.name "Firstname Lastname"
user@mymac ~/ $ git config user.email "[email protected]"
user@mymac ~/ $ git config push.default simple
user@mymac ~/ $ git config core.editor emacs
명령을 사용하여 수동으로 구성하지 않고 이 디렉토리의 모든 리포지토리에 대해 기본적으로 다른 전자 메일을 원합니다.
user@mymac ~/CompanyAbc/website-repo (master) $ git config user.email "[email protected]"
새 저장소를 복제할 때마다.
해결책
기본
~/.gitconfig
파일은 다음과 같아야 합니다.[user]
name = Firstname Lastname
email = [email protected]
[push]
default = simple
[core]
editor = emacs
[includeIf "gitdir:~/CompanyAbc/"]
path = ~/CompanyAbc/.gitconfig
[includeIf "gitdir:~/CompanyMno/"]
path = ~/CompanyMno/.gitconfig
~/CompanyAbc/.gitconfig
에서 사용자 정의 이메일 주소 설정[user]
email = [email protected]
~/CompanyMno/.gitconfig
와 같은 다른 구성에 대해서도 이 작업을 반복할 수 있습니다.확인
새 설정을 확인하려면 명령을 실행하십시오.
user@mymac ~/CompanyAbc/some-repo/ (master) $ git config user.email
그것은 다음과 같은 것을 버려야합니다.
[email protected]
코딩에 행운을 빕니다!
Reference
이 문제에 관하여(하위 디렉토리의 리포지토리에 대한 Git 구성 user.email), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/absoftware/git-config-user-email-for-repositories-in-subdirectory-140k텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)