
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 machineexplain 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-configtry on your machineexplain 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 machineexplain this command