mirror of
https://github.com/jbranchaud/til
synced 2026-01-02 22:58:01 +00:00
10 lines
287 B
Markdown
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)
|