views:

51

answers:

1

I'm using msysgit on windows

on old repo i had no problems with this command

git svn clone -s --username=XXX https://URL

but repo has moved and now the url is like that: svn://URL:port how can i set this port number ? using

git svn clone svn://URL:port

results with 'mkdir ... not a directory' error, and without port it can't find the repository

A: 

Have you tried -p #### or -e "p ####"? Those would be my 2 guesses.

Steve
both are "unknown options"
svn://<host>:<port>/... *is* a proper svn: URL. If it's not working with git-svn, then that's git-svn's problem. There may be some "quoting" syntax to use though. Might be worth trying a trailing slash.
Kevin Reid
thanks :)quotes helped