Files
30-seconds-of-code/git/snippets/commit-amend-author.md
2023-05-01 22:28:09 +03:00

601 B

title, type, tags, author, cover, dateModified
title type tags author cover dateModified
Change the last commit's author snippet
commit
chalarangelo symmetry-cloudy-mountain 2022-05-03T05:00:00-04:00

Updates the last commit's author without changing its contents.

  • Use git commit --amend to edit the last commit.
  • Use the --author option to change the <name> and <email> of the commit's author.
git commit --amend --author="<name> <email>"
# Make some changes to files
git add .
git commit --amend --author="Duck Quackers <cool.duck@qua.ck>"
# The last commit's author is now `Duck Quackers`