Click here to Skip to main content
15,887,676 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I have a problem in using svn repository. When i try to update my project in svn i m getting the following error

oomsys@oomsysmob-6:~/brundelre3$ svn st
svn: warning:is not a working copy
oomsys@oomsysmob-6:~/brundelre3$ svn up
Skipped '.'

I tried the things which explained about these error previously from this links

Removing .svn files from all directories

http://bookmarks.honewatson.com/2008/06/06/find-and-remove-hidden-folders-svn-ubuntu-linux-command-line/

http://www.ubun2.com/question/348/how_remove_all_svn_folders_recursively

but nothing solves my problem. I want to remove all the hidden files from my project.

Thanks

Nirmala Sudhir
Posted

1 solution

This is a very usual problem. Deleting the working directory is a right idea, but in a meanwhile, you can check put the project is some other directory.

You may have problem deleting ".svn" because one of Subversion processes holds some of the files. Most likely, this is TSVNCache.exe. Kill this project with Windows Task Manager (or any other utility) and then you will be able to remove the files.

If it does not help, it could be some other process.

To determining which process holds the files, you can use the utility from the Sysinternals Suite. This set of utilities (formerly from Winternals company, presently at Microsoft) is a must-have for any developer, please see:
http://technet.microsoft.com/en-us/sysinternals/bb842062[^],
http://technet.microsoft.com/en-us/sysinternals/bb545027[^].

The utility you need is "handle.exe", please see:
http://technet.microsoft.com/en-us/sysinternals/bb896655[^].

In your case, you use it with file name parameter:
handle.exe <file_name>


This utility will scan all kinds of handles, not just file handles. For file, it will scan all file handles matching the file name (so it does not have to be a full path name) and return information sufficient to identify each process, including its pid. So, if you need more information on a process in question, you can also use other Sysinternals utilities, in particular, its Process Explorer:
http://technet.microsoft.com/en-us/sysinternals/bb896653[^].

Good luck,
—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900