tags:

views:

128

answers:

1

When I try to commit a specific file (xxx.java) following error pops up:

svn: Entry for 'C:\aaa/bbb/ccc/xxx.java' is marked as 'copied' but is not itself scheduled
for addition.  Perhaps you're committing a target that is
inside an unversioned (or not-yet-versioned) directory?

How to solve this SVN-Error?

+2  A: 

I solved it with the following steps:

  1. Backup your changes in the folder "ccc"
  2. delete the folder "ccc".
  3. run "SVN UPDATE" on the top-folder "aaa"
  4. redo the changes in the file xxx.java
  5. Commit again

Then the commit worked.

Andreas
Worked for me, thanks!
Proclyon