Tagged Questions
0
votes
0answers
131 views
Recover file deleted by Eclipse (subclipse) on SVN commit
On OSX using Flash Builder 4.6 (Eclipse based).
In a recent project I wasn't able to rename-refactor an existing class file (need to figure out why this happens occasionally) so I did so in the ...
3
votes
1answer
5k views
How to use Terminal to delete all .svn folders recursively?
what command can I type into Terminal so that I can:
delete all .svn folders within a folder (and from all subdirectories)
but not delete anything else
?
1
vote
2answers
499 views
'del /s *.svn' returns “Access is denied” error on Windows 7
I'm trying to delete all .svn files from a folder and all of its subfolders so I'm doing this from the command line:
del /s *.svn
However, all I get is this for each .svn file:
Access is ...
5
votes
3answers
974 views
How to Recursively Remove .svn Directories?
How do I recursively delete all .svn directories, starting with the directory I am in?
1
vote
2answers
295 views
How to find who deleted a line from a file in a SVN repository?
I work on a very large project (10000+ versions) and sometimes it happened that I need to know who of the other users deleted some line in a file. Is there a way to do that that? I can do svn blame ...