Hi,
I've cloned the svn repository into github:
http://github.com/felipec/soap4r
This is how I did it:
git svn clone --authors-file=authors.txt --stdlayout
http://dev.ctor.org/svn/soap4r soap4r
The authors.txt file contains:
nakahiro = Hiroshi Nakamura <nakah...@gmail.com>
nahi = Hiroshi Nakamura <nakah...@gmail.com>
(no author) = Hiroshi Nakamura <nakah...@gmail.com>
Then to create the tags:
for x in `git for-each-ref --format='%(refname:short)'
'refs/remotes/tags/RELEASE_*'`; do t=$(echo ${x#tags/RELEASE_} | tr _
.); git tag v$t $x^; done
I also tried to replicate the last merge commit with a proper git
merge, but there are too many differences. Maybe there was a mistake?
I'm attaching a diff between the last commit and the one I created.
We could also cleanup the commit messages to remove the '*'s
everywhere, and git-svn-id lines if needed.
Thoughts?
--
Felipe Contreras