hint from HERE
- windows7 and git for windows
- tortoisesvn 1.8 and given svn environment
- on PowerShell run
svnserve.exe -d --root <P:\\path\to\local\svn\repository\dir>- it makes No prompt
- on your git workspace (if any) run
git svn clone svn://relative/path/to/repo- in my case error happend several times ->
cd <repo>then repeatgit svn fetchuntil finish conversion
- in my case error happend several times ->
- in your
<repo>rungit remote add origin <URL to github repo> - in my case remote is a brank repo so I did rebase:
git rebase origin/master
- finally push it to remote:
git push origin master