Comment on Why does GitHub let me commit as other people?parentComments−djur12ygit supports this:% git config --get user.nameOriginal Committer% git commit -m "Test" --author "Test Dude <test@example.com>"% git log -n 1 --pretty="%cn, %an: %s"Original Committer, Test Dude: Test
Comments
git supports this:
% git config --get user.name
Original Committer
% git commit -m "Test" --author "Test Dude <test@example.com>"
% git log -n 1 --pretty="%cn, %an: %s"
Original Committer, Test Dude: Test