This kind of error occurs when uploading code to svn. I don’t know how to solve it. Can you help me find out how to solve it?
淡淡烟草味2017-07-05 10:56:34
This is related to using Code Cloud. You can take a look at the svn usage instructions of Code Cloud http://git.mydoc.io/?t=153699
漂亮男人2017-07-05 10:56:34
It should be that the parent of your html or an ancestral directory has not been added to svn, resulting in the html file not being found
For example: svn add directory/file.extension
If the directory is not added to svn, an error will be reported
You should
svn add directory --depth=empty
svn add directory/file.extension
Of course the above two steps can be combined into one stepsvn add --parents directory/file.extension
Reference: Add file to subversion, while automatically adding parent directory node(s) if not added already