I'm trying to import some files into my SVN via Command line like this:
svn import -m "message" "mypath" "https://mysvn" --username "user" --password "password"
The issue I'm facing is that the provided credentials are completely ignored and instead my windows user is taken for authentication at the SVN. So the import succeeds but the SVN history mentions my Windows user as Author and not the user I provided via command line.
Is anyone familiar with this issue? Is there a way the get the credentials in the command used for import instead of the windows user?
Thanks in advance!