1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00
Files
til/git/amend-author-of-previous-commit.md
2015-07-23 18:21:17 -07:00

10 lines
287 B
Markdown

# Amend Author Of Previous Commit
The author of the previous commit can be amended with the following command
```bash
$ git commit --amend --author "Don Draper <ddraper@sterlingcooper.com>"
```
[source](http://stackoverflow.com/questions/750172/change-the-author-of-a-commit-in-git)