Reputation: 31
Some help please. This doesn't seem to do it for me:
git svn clone --stdlayout --authors-file=../authors.txt file:///home/path
Upvotes: 3
Views: 216
Reputation: 20875
I would try to clone your SVN with SmartGit: it translates such SVN concepts like branches, tags, ignores, EOLs to the corresponding Git concepts.
Maybe I will find an easy Howto....
Upvotes: 0
Reputation: 24813
I have had great luck with specifying the branches and tags explicitly:
git svn clone http://server.com/svn/project -T trunk -b branches -t tags project
git remote add origin [email protected]:project
git push origin master
Upvotes: 0