I have a little issue using SVN.
When I run svn stat I get this:
~ some/dir
When I run svn commit -m "test" I get this:
svn: working copy '/website' is locked
svn: try svn cleanup (cf 'svn help cleanup')
But when I use cleanup, I have this:
svn: 'some/dir' is not a working copy directory
I have some files I would like to keep inside the /website/some/dir directory. How should I proceed?
Thanks for all the help provided.
PS: I’m aware the ~ (tilde) means the directory should be reverted, but I also get the lock problem when I try it.
Maybe another user added the directory
some/dirwhile you were working on it. Now you got the problem that you want to check it in, but you cannot, because the path is already used.Try checking out
some/dirinto another folder and then commit your changes there.