vote up 9 vote down star
4

I was writing a simple script in the school computer, and commiting the changes to git (in a repo that was in my pendrive, cloned from my computer at home). After several commits I realized I was commiting stuff as root. Is there any way to change the autor of this commits to my name?

flag

4 Answers

vote up 8 vote down check

Changing the author (or committer) would require re-writing all of the history. If you're okay with that and think it's worth it then you should check out git filter-branch. The man page includes several examples to get you started. Also note that you can use environment variables to change the name of the author, committer, dates, etc. -- see the "Environment Variables" section of the git man page.

link|flag
vote up 10 vote down

One liner:

git-filter-branch --env-filter "export GIT_AUTHOR_NAME='New name'; export GIT_AUTHOR_EMAIL='New email'" HEAD
link|flag
Your "broken up" version doesn't have any effect: you need to change the environment variables inside an env-filter fragment, otherwise the setting you exported before invoking filter-branch are overwritten by the values from the commit for each filter run. – araqnid Apr 15 at 12:42
Thanks for the catch, misread the documentation. – Brian Gianforcaro Apr 15 at 14:47
vote up 8 vote down

As demonstrated here, you can also do:

git filter-branch --commit-filter '
        if [ "$GIT_COMMITTER_NAME" = "<Old Name>" ];
        then
                GIT_COMMITTER_NAME="<New Name>";
                GIT_AUTHOR_NAME="<New Name>";
                GIT_COMMITTER_EMAIL="<New Email>";
                GIT_AUTHOR_EMAIL="<New Email>";
                git commit-tree "$@";
        else
                git commit-tree "$@";
        fi' HEAD
link|flag
vote up 7 vote down

You could do git rebase -i <some HEAD before all of your bad commits>. Then mark all of your bad commits as "edit" in the rebase file, and when git asks you to amend each commit, do git commit --amend --author="<new author, in "Author Name <email@address.com>" format>, edit or just close the editor that opens, and then do git rebase --continue to continue the rebase.

I don't know if there is a more streamlined way to do this with multiple commits.

link|flag
That would take forever if you had even as few as a hundred commits to pick through. – Matthew Iselin Aug 24 at 3:14
Great for the odd commit though - useful if you're pairing and forget to change the author – mloughran Sep 25 at 11:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.