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?
|
4
|
|
|
|
|
|
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. |
||
|
|
|
|
One liner:
|
||||
|
|
|
As demonstrated here, you can also do:
|
|||
|
|
|
|
You could do I don't know if there is a more streamlined way to do this with multiple commits. |
||||
|
