I have a repository which I have already 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 svn.authors 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.
| |||
|
feedback
|
|
Start out by seeing what you've got to clean up:
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):
That's basically the script I used for a large rewrite recently that was very much as you described (except I had large numbers of authors). edit Use π pointed out a quoting problem in my script. Thanks! | |||||||
feedback
|
|
In this case, you would probably do something like (totally untested):
As always, the following applies: in order to rewrite history, you need a conspiracy. | |||
|
feedback
|
|
You probably want to look into 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. | |||
|
feedback
|