If I do svn status in my working directory I get
? skripte/data/somefile.csv
! skripte/data/somefile.csv
svn ? status tells me
- ‘!’ item is missing (removed by non-svn command) or incomplete
- ‘?’ item is not under version control
How can a file be not under version control AND svn complains about it as missing?
The solution was:
skripte/data/somefile.csvto another placesvn delete skripte/data/somefile.csvsvn commit -m=""-m=""means only, that I don’t want to send a commit message here.After those 3 steps
svn statusshows everything is correct.Thanks to @ZoolWay, @Piskvor and @Raghuram for leading me towards the right direction and pointing out things, that helped me identify the error in this case.