SharpSvn marks file as missing but I need deleted
I want to delete fil开发者_JAVA百科e in svn. I do this so:
svnClient.Delete( pathToFile, new SvnDeleteArgs {Force = true} );
When I want to commit chenges, in svn file status is 'missing', but I need 'deleted'. What I do wrong?
The problem was that I passed on the path to lowercase. For SVN it is important that the file name was in the same register as in the repository.
精彩评论