How to commit changes after SVN import? -
I created a project and used svn import . Now I want to make changes to the file, how to do it
I have empty ~ / .workspace / project / .svn / entries .
If I try svn commit then I get:
$ svn commit src / dat / win.java svn: '/ home / st /. Workspace / dat / src / dat 'is not a working copy: The file can not open' /home/st/.workspace/dat/src/dat/.svn/entries': Any such file or< / Pre>directory
... or just
svn commit:$ code svn commit svn: file '/ home / st /.workspace/dat/ 'Can not read Svn / entries': End of file
Before you go, you need to checkout just imports Delete the fresh copy of the files (or rename) you are the project directory, and svn checkout [REPOSPATH] . Then you have a working copy that you are copying after changing a file, you can use svn commit .
See in the SVN Book
Comments
Post a Comment