GitNotes.13-5.md
본 문서는 Git Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

Section 13.5: 복수개의 사용자 이름과 이메일 주소 이용하기

Git 2.13 이후로는, 폴더별 filter 를 이용하여 복수개의 사용자 이름과 이메일 주소를 설정할 수 있다.

Windows 에서의 예제:

.gitconfig

편집:

git config --global -e

추가:

[includeIf "gitdir:D:/work"] path = .gitconfig-work.config [includeIf "gitdir:D:/opensource/"] path = .gitconfig-opensource.config

주의

  • 순서가 영향을 미친다, 마지막으로 부합하는 조건 항목이 선택된다.
  • 경로 표현의 마지막 끝에 "/" 는 반드시 필요하다 - 예: "gitdir:D:/work" 는 동작하지 않는다.
  • "gitdir: prefix" 부분은 필수이다.

.gitconfig-work.config

.gitconfig 와 동일한 위치에 작성한다

[user] name = Money email = work@somewhere.com

.gitconfig-opensource.config

.gitconfig 와 동일한 위치에 작성한다

[user] name = Nice email = cool@opensource.stuff

Linux 에서의 예제

[includeIf "gitdir:~/work/"] path = .gitconfig-work [includeIf "gitdir:~/opensource/"] path = .gitconfig-opensource

이외의 파일 내역과 주의사항은 섹션을 참고한다.

[출처] https://books.goalkicker.com/GitBook/ (CC BY-SA)

반응형

+ Recent posts