I need to find a commit in Git by a given hash, SHA. For example, if I have the "a2c25061" hash, and I need to get the author and the committer of this commit.
What is the command to get that?
git log -1 --format="%an %ae%n%cn %ce" a2c25061
The Pretty Formats section of the git show documentation contains
format:<string>The
format:<string>format allows you to specify which information you want to show. It works a little bit like printf format, with the notable exception that you get a newline with%ninstead of\n…The placeholders are:
%an: author name%ae: author email%cn: committer name%ce: committer email