Subversion command line commit does nothing

svn

Solution

If the file really was modified (i.e., you didn't just forget to save your changes), then you should check the conditions which make a file appear as modified for Subversion:

- has the 'last modification' date and/or the file size changed?

- if not: file is not modified

- if yes: compare file content with the BASE file

- stop at the first byte that differs, mark the file as modified

- if no byte differs regarding to BASE, mark the file as not-modified

Problem

When I run: ``` svn commit -m "some message" myFile.txt ``` in the DOS shell, it gives me an empty line as the result. There's no error message, etc. And the file is not committed. What could be causing this?

Original source