Forrest logo
back to context overview

git-reauthor

List of commands for git-reauthor:

  • git-reauthor:tldr:16270 git-reauthor: Change the email and name of all commits, regardless of their original author.
    $ git reauthor --all --correct-email ${name@example-com} --correct-name ${name}
    try on your machine
    explain this command
  • git-reauthor:tldr:89ce7 git-reauthor: Change the email and name to the ones defined in the Git config.
    $ git reauthor --old-email ${old@example-com} --use-config
    try on your machine
    explain this command
  • git-reauthor:tldr:b02c3 git-reauthor: Change an author's email and name across the whole Git repository.
    $ git reauthor --old-email ${old@example-com} --correct-email ${new@example-com} --correct-name "${name}"
    try on your machine
    explain this command
back to context overview