I have migrated my svn repo to local git. For some reason all authors look like:
userid <userid@localhost>
Is there way to change all authors rewriting "localhost" to "myorg.org"
userid <[email protected]>
UPDATE
userid is not fixed.
I have migrated my svn repo to local git. For some reason all authors look like:
userid <userid@localhost>
Is there way to change all authors rewriting "localhost" to "myorg.org"
userid <[email protected]>
UPDATE
userid is not fixed.
Copyright © 2021 Jogjafile Inc.
The comments have several suggestions for fixing this during the import process. If you want to fix it after the import is complete, you can use the
git filter-branch
command to rewrite author emails.This will subsitute
myorg.org
forlocalhost
in all author and committer emails (on the current branch).