84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
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?
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
Delete your local one, update it, and then modify and submit it?
Delete this html file and update again
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.extensionIf the directory is not added to svn, an error will be reportedYou should
svn add directory/file.extension
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
svn add --parents directory/file.extension
Reference: Add file to subversion, while automatically adding parent directory node(s) if not added already
There is a conflict, update first and then submit, keep good habits
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
Delete your local one, update it, and then modify and submit it?
Delete this html file and update again
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
Of course the above two steps can be combined into one step
svn add --parents directory/file.extension
Reference: Add file to subversion, while automatically adding parent directory node(s) if not added already
There is a conflict, update first and then submit, keep good habits