jira-importer commented on issue #767: URL: https://github.com/apache/maven-scm/issues/767#issuecomment-2964623109
**[Maria Odea B. Ching](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=oching)** commented Hi Grant, for the other providers, the mkdir command is simply just add. But for SVN provider, you can run mkdir in two ways: * svn mkdir [DIRNAME] * svn mkdir [REPO URL] The related wagon-scm issue is for deploying documentation to a SCM repository. The case there is when the specified path does not exist, the deployment fails. So what we wanted to do was create the missing directory paths first. In cases when the provider is SVN, we want to utilize the 'svn mkdir [REPO URL]' command so that there's no need to checkout the entire source tree just to create the directories. For the other SCM providers, I don't think there's an equivalent for 'svn mkdir [REPO URL]' (only for 'svn mkdir [DIRNAME]' to create/add dir in working copy has an equivalent) so what I did with the CVS implementation for the mkdir command is to just invoke the the CVS Add command from within. I'm still fixing some tests and I'll commit it later if you want to take a look. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
