fork-dev / Tracker

Bug and issue tracker for Fork for Mac
494 stars 12 forks source link

Amending an author name #2028

Closed huntc closed 7 months ago

huntc commented 7 months ago

Can you please advise on how an author name can be updated? I have a few "Your Name" authors in my commits.

DanPristupov commented 7 months ago

You can't change the author name of the latest commit from Fork, but you can do that in command line.

git commit --amend --author="author <email>"

https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---amend

huntc commented 7 months ago

Thanks. I suspected that was the case.