I am trying to make a commit like
git commit --author="John Doe <john@doe.com>" -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?
Mailing list +
git format-patch
+git apply
can generate author != committerIn projects like the Linux kernel where patches are:
git format-patch
git send-email
git apply
orgit am
: How to use git am to apply patches from email messages?generating a single new commit with different author and committer:
See for example this randomly selected patch and the corresponding commit:
Git web interfaces like GitHub and GitLab may or may not generate author != committer
Since Git(Hub|Lab) hold both the upstream and the fork repositories on a the same machine, they can automatically do anything that you can do locally as well, including either of:
Create a merge commit.
Does not generate author != committer.
Keeps the SHA or the new commit intact, and creates a new commit:
Historically, this was the first available method on GitHub.
Locally, this is done with
git merge --no-ff
.This produces two commits per pull request, and keeps a fork in the git history.
rebase on top of
master
GitHub also hacks the commits to set committer == whoever pressed the merge button. This is not mandatory, and not even done by default locally by
git rebase
, but it gives accountability to the project maintainer.The git tree now looks like:
which is exactly like that of the
git apply
email patches.On GitHub currently:
https://help.github.com/articles/about-merge-methods-on-github/
How to set the committer of a new commit?
The best I could find was using the environment variables to override the committer:
How to get the committer and commit date of a given commit?
Only author data shows by default on
git log
.To see the committer date you can either:
format the log specifically for that:
where
cn
andcd
stand forCommitter Name
andCommitter Date
use the
fuller
predefined format:See also: How to configure 'git log' to show 'commit date'
go low level and show the entire commit data:
How to set the committer date of a new commit?
git commit --date
only sets the author date: for the committer date the best I could find was with the environment variable:See also: What is the difference between author and committer in Git?
How Git stores author vs committer internally?
See: What is the file format of a git commit object?
Basically, the commit is a text file, and it contains two line separated fields:
This makes it clear that both are two completely independent data entries in the commit object.
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.