0

I want to delete file 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?

name1ess0ne
  • 868
  • 7
  • 17

1 Answers1

0

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.

name1ess0ne
  • 868
  • 7
  • 17