Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My git repository is imported from svn. And the username in git log is something like 0129. I want to override it with my setting like John instead of 0129. And I find this:

Is there a way to override a git author's display name in local repository config?

The .mailmap solution works well in git shortlog, but git log still give the same output. Any suggestions?

EDIT I've check How do I change the author of a commit in git? too but I don't want to run git filter branch every time after git svn rebase.

share|improve this question
Perhaps you wanna rewrite all commits history like that. – ДМИТРИЙ МАЛИКОВ Jan 28 at 8:34
@ДМИТРИЙМАЛИКОВ Thanks, but I don't want to git filter-branch after every git svn rebase. – spin6lock Jan 28 at 8:43

2 Answers

up vote 2 down vote accepted

You need to specify the mapping of authors in the moment of migrating from svn to git, using git-svn:

  mkdir project_tmp
  cd project_tmp
  git-svn init https://company.project.org/project --no-metadata
  git config svn.authorsfile ~/Desktop/users.txt
  git-svn fetch

And the users.txt file is like this:

  xavier.fuster = xavier.fuster <xavier.fuster@project.org>
  francesc.dalmau = francesc.dalmau <francesc.dalmau@project.org>

The first part of the equal is the svn user name, the second part is the git name.

After this you need to do normal clone to leave all the svn stuff behind:

 git clone project_tmp project
share|improve this answer
Thanks @FerCa, is there anyway to avoid another git clone and use the svn.authorsfile now? – spin6lock Jan 28 at 8:47
I don't think so. If so I do not know ... – FerCa Jan 28 at 10:22

have you had a look at the --authors-file when cloning/fetching/rebasing/...?

suppliying the authors-file, will allow you to use sane names. the syntax of the authors-file is something like the following, with 1 author per line:

svn_user_name = JustNameInGit <obligatory@email.com>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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