I am trying to make a commit like
git commit --author="John Doe <[email protected]>" -m "<the usual commit message>"
where John Doe is some user in whose name I want to make the commit.
It appears all right in git log
. However, when I do a gitk
, the author name is correct, but the committer name is picked from my global git config settings (and is thus set to my name/email).
Questions
What is the difference between the two (committer vs author)?
Should I be setting the committer as well to the other user?
If yes, how?
The original poster asks:
The author is the person who originally wrote the code. The committer, on the other hand, is assumed to be the person who committed the code on behalf of the original author. This is important in Git because Git allows you to rewrite history, or apply patches on behalf of another person. The FREE online Pro Git book explains it like this:
The original poster asks:
No, if you want to be honest, you should not be setting the committer to the author, unless the author and the committer are indeed the same person.