Retroactively Correct Authors with Git SVN? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:40:24Zhttp://stackoverflow.com/feeds/question/392332http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/392332/retroactively-correct-authors-with-git-svn7Retroactively Correct Authors with Git SVN?Daniel Spiewak2008-12-24T23:22:03Z2009-02-19T19:08:02Z
<p>I have a repository which I have <em>already</em> cloned from SVN. I've been doing some work in this repository in its Git form and I would hate to lose that structure by cloning again. However, when I originally cloned the repository, I failed to correctly specify the <code>svn.authors</code> property (or a semantically-similar option). Is there any way I can specify the SVN author mappings now that the repository is fully Git-ified? Preferably, I would like to correct all of the old commit authors to represent the Git author rather than the raw SVN username.</p>
http://stackoverflow.com/questions/392332/retroactively-correct-authors-with-git-svn/392345#3923452Answer by Greg Hewgill for Retroactively Correct Authors with Git SVN?Greg Hewgill2008-12-24T23:36:52Z2008-12-24T23:36:52Z<p>You probably want to look into <a href="http://www.kernel.org/pub/software/scm/git/docs/git-filter-branch.html" rel="nofollow"><code>git-filter-branch</code></a>, specifically the <code>--commit-filter</code> option. This command is a powerful chainsaw that can rewrite your entire repository history, changing whatever you might want to change.</p>
<p>Note that when you do this, you should pull new clones from the updated repository since the SHA1 hashes of every commit may have changed.</p>
http://stackoverflow.com/questions/392332/retroactively-correct-authors-with-git-svn/392356#3923563Answer by Jörg W Mittag for Retroactively Correct Authors with Git SVN?Jörg W Mittag2008-12-24T23:49:45Z2008-12-24T23:49:45Z<p><a href="http://Kernel.Org/pub/software/scm/git/docs/git-filter-branch.html" rel="nofollow"><code>git filter-branch</code></a> can be used to rewrite large chunks of history.</p>
<p>In this case, you would probably do something like (totally untested):</p>
<pre><code>git filter-branch --env-filter '
GIT_AUTHOR_NAME=`echo "${GIT_AUTHOR_NAME}" | sed -e "s/svnname1/Right Name/; s/svnname2/Correct Name/"`
GIT_COMMITTER_NAME=`echo "${GIT_COMMITTER_NAME}" | sed -e "s/svnname1/Right Name/; s/svnname2/Correct Name/"`
GIT_AUTHOR_EMAIL=`echo "${GIT_AUTHOR_EMAIL}" | sed -e "s/svnname1/m@i.l/; s/svnname2/correct.name@e.mail/"`
GIT_COMMITTER_EMAIL=`echo "${GIT_COMMITTER_EMAIL}" | sed -e "s/svnname1/m@i.l/; s/svnname2/correct.name@e.mail/"`
'
</code></pre>
<p>As always, the following applies: in order to rewrite history, you need a <a href="http://Kernel.Org/pub/software/scm/git/docs/git-rebase.html#_recovering_from_upstream_rebase" rel="nofollow">conspiracy</a>.</p>
http://stackoverflow.com/questions/392332/retroactively-correct-authors-with-git-svn/392427#39242710Answer by Dustin for Retroactively Correct Authors with Git SVN?Dustin2008-12-25T01:52:40Z2009-02-19T19:08:02Z<p>Start out by seeing what you've got to clean up:</p>
<pre><code>git shortlog -s
</code></pre>
<p>For each one of those names, create an entry in a script that looks like this (assuming you want all the authors and committers to be the same):</p>
<pre><code>#!/bin/sh
git filter-branch --env-filter '
n=$GIT_AUTHOR_NAME
m=$GIT_AUTHOR_EMAIL
case ${GIT_AUTHOR_NAME} in
user1) n="User One" ; m="user1@example.com" ;;
"User Two") n="User Two" ; m="user2@example.com" ;;
esac
export GIT_AUTHOR_NAME="$n"
export GIT_AUTHOR_EMAIL="$m"
export GIT_COMMITTER_NAME="$n"
export GIT_COMMITTER_EMAIL="$m"
'
</code></pre>
<p>That's basically the script I used for a <a href="http://groups.google.com/group/memcached/browse_thread/thread/a7b153bc087244b1" rel="nofollow">large rewrite</a> recently that was very much as you described (except I had large numbers of authors).</p>
<p><strong>edit</strong> Use π pointed out a quoting problem in my script. Thanks!</p>