svn cat after svn del
        Posted  
        
            by René Nyffenegger
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by René Nyffenegger
        
        
        
        Published on 2010-05-20T12:07:22Z
        Indexed on 
            2010/05/20
            12:30 UTC
        
        
        Read the original article
        Hit count: 394
        
svn
I have inadvertently svn-deleted a file with svn del --targets del.txt. Now, I'd like to recover that file with svn cat myPreciousFile.txt@4130 > myPreciousFile.txt, but svn gives me a warning that myPreciousFile.txt is not under version control. A svn cat -r 4130 myPreciousFile.txt > myPreciousFile.txt didn't work, either.
Can someone please tell me how I'd go about recovering this file again?
© Stack Overflow or respective owner