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?
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?
Did you svn add myFile.txt first?
You can only commit changes to files that are added to svn.
Do "svn st myFile.txt". If the first column has a ? in it, then the file isn't under source control and you need to "svn add myFile.txt". If the first column is blank, then there aren't any changes to commit. If the first column is something else, then "svn help st" will give you the meaning of the other possible flags.
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: