I have some source code and I imported it into SVN. I forgot to update or check out it and made some changes to the files.
Now (understandably) SVN does not allow me to commit these changes. It says:
svn:
‘/home/name/folder’ is
not a working copy
What can I do now to commit these changes?
The error you are seeing: “svn: ‘/home/name/folder’ is not a working copy” has nothing to do with not having run update. It means what is says:
Here’s a guess at what’s happening:
Here’s my suggestion for a solution:
run
svn status. you should see that there are local changes.don’t forget to add any new files with
svn add.svn commityour changes.throw out ‘folder’. work in ‘folder.svn’ from now on.