Bogus file name in SVN

I am working on SVN and trying to make some changes that I made. But I got an error message telling me that

delete --force C:/workspace/Project/src/main/java/com/test/ml
    Bogus filename
svn: 'C:\workspace\Project\src\main\java\com\test\ml' does not exist

Does anyone know how to fix this problem?

+3
source share
5 answers

Subversion usually does not support absolute paths in operations such as deletion. What happens if you try the relative path? For example, if you are in a directory C:\workspace\project,

svn delete src / main / java / com / test / ml
+3
source

I resolve this by creating a new C: \ workspace \ Project \ src \ main \ java \ com \ test \ ml, then noting that it is allowed.

+3
source

, ; , * nix, Windows . (, .)

0
source

I solved the problem by following these 6 steps (to help someone help):

1) Copy the folder in which the conflict arose to your system from eclipse.

2) Delete the folder in eclipse by right clicking, after deletion red cross will be marked.

3) Update the deleted folder via **Replace With -> Latest from Repository**

4) Commit the code, at this point it should commit.

5) Copy the contents that you saved in your local system in that folder by accepting any duplicates that follow.

6) Commit the code again and hopefully you are done without any file loss.
0
source

If you use tortoiseSVN - I found that the changes from the turtle have changed for me.

0
source

Source: https://habr.com/ru/post/1720735/


All Articles