Skip to content
Paul An edited this page Jul 30, 2022 · 2 revisions

wiki for parser

git log 관련 배경지식(?) 정리

저자(Author) 와 커미터(Committer) 가 다른 경우가 있나요?

: 7/29 온라인 미팅 중 채정님 질문

image

참고 : https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History

You may be wondering what the difference is between author and committer. The author is the person who originally wrote the work, whereas the committer is the person who last applied the work. So, if you send in a patch to a project and one of the core members applies the patch, both of you get credit — you as the author, and the core member as the committer. We’ll cover this distinction a bit more in Distributed Git.

저자(Author) 와 커미터(Committer) 를 구분하는 것이 조금 이상해 보일 수 있다. 저자는 원래 작업을 수행한 원작자이고 커밋터는 마지막으로 이 작업을 적용한(저장소에 포함시킨) 사람이다. 만약 당신이 어떤 프로젝트에 패치를 보냈고 그 프로젝트의 담당자가 패치를 적용했다면 두 명의 정보를 모두 알 필요가 있다. 그래서 이 경우 당신이 저자고 그 담당자가 커미터다. 분산 환경에서의 Git 에서 이 주제에 대해 자세히 다룰 것이다.

Clone this wiki locally